Pokedex Linker
Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
O que é Pokedex Linker?
Pokedex Linker é uma extensão do Chrome desenvolvida por https://thepoke.de, e sua principal característica é "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pokedex Linker
Baixe arquivos de extensão Pokedex Linker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | |
ID | cafmpknaihmoehhoehfcfpnjdmcpffee |
URL Oficial | https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee |
Descrição | Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link. |
Tamanho do Arquivo | 168 KB |
Contagem de Instalações | 77 |
Versão Atual | 3.6 |
Última Atualização | 2020-06-03 |
Data de Publicação | 2020-06-02 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | https://thepoke.de |
Tipo de Pagamento | free |
Site da Extensão | https://thepoke.de/x/ |
Idiomas Suportados | 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" ] } ] } |