Pokedex Linker
Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
What is Pokedex Linker?
Pokedex Linker is a Chrome extension developed by https://thepoke.de, and its main feature is "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".
Extension Screenshots
Download Pokedex Linker Extension CRX File
Download Pokedex Linker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | |
ID | cafmpknaihmoehhoehfcfpnjdmcpffee |
Official URL | https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee |
Description | Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link. |
File Size | 168 KB |
Installation Count | 77 |
Current Version | 3.6 |
Last Updated | 2020-06-03 |
Publish Date | 2020-06-02 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://thepoke.de |
Payment Type | free |
Extension Website | https://thepoke.de/x/ |
Supported Languages | 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" ] } ] } |