Pokedex Linker
Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
Vad är Pokedex Linker?
Pokedex Linker är en Chrome-tillägg utvecklad av https://thepoke.de, och dess huvudfunktion är "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".
Tilläggsskärmbilder
Ladda ner Pokedex Linker-förlängningens CRX-fil
Ladda ner Pokedex Linker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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).
Grundläggande Information om Tillägg
Namn | |
ID | cafmpknaihmoehhoehfcfpnjdmcpffee |
Officiell webbadress | https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee |
Beskrivning | Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link. |
Filstorlek | 168 KB |
Antal Installationer | 77 |
Aktuell Version | 3.6 |
Senast Uppdaterad | 2020-06-03 |
Publiceringsdatum | 2020-06-02 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | https://thepoke.de |
Betalningssätt | free |
Tilläggswebbplats | https://thepoke.de/x/ |
Stödda Språk | 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" ] } ] } |