Pokedex Linker
Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
Co to jest Pokedex Linker?
Pokedex Linker to rozszerzenie Chrome opracowane przez https://thepoke.de, a jego główną funkcją jest „Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pokedex Linker
Pobierz pliki rozszerzeń Pokedex Linker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Every good trainer needs the latest information about whatever Pokemon may cross their path. If you happen to stumble across one while browsing the internet, this extension will convert any mentioned name to link for that pokemon on thepoke.de/x/. Hovering over that link will provide a quick peek of that pokemon, it's national dex number, and it's type(s).
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | cafmpknaihmoehhoehfcfpnjdmcpffee |
Oficjalny URL | https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee |
Opis | Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link. |
Rozmiar pliku | 168 KB |
Liczba instalacji | 77 |
Aktualna Wersja | 3.6 |
Ostatnia Aktualizacja | 2020-06-03 |
Data Publikacji | 2020-06-02 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | https://thepoke.de |
Typ Płatności | free |
Strona Rozszerzenia | https://thepoke.de/x/ |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pokedex Linker", "description": "Converts pokemon names to links that open up ThePoke.de\/x\/ with easy access info when you hover over the link.", "version": "3.6", "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png", "512": "icon_512.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "popper.min.js", "tooltip.min.js", "db.js", "content.js" ] } ] } |