Pokedex Linker
Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
¿Qué es Pokedex Linker?
Pokedex Linker es una extensión de Chrome desarrollada por https://thepoke.de, y su función principal es "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Pokedex Linker
Descarga archivos de extensión Pokedex Linker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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).
Información Básica de la Extensión
Nombre | |
ID | cafmpknaihmoehhoehfcfpnjdmcpffee |
URL Oficial | https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee |
Descripción | Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link. |
Tamaño del Archivo | 168 KB |
Cantidad de Instalaciones | 77 |
Versión Actual | 3.6 |
Última Actualización | 2020-06-03 |
Fecha de Publicación | 2020-06-02 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | https://thepoke.de |
Tipo de Pago | free |
Sitio Web de la Extensión | https://thepoke.de/x/ |
Idiomas Soportados | 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" ] } ] } |