PokeFinder

Wonder what this Pokemon is? We got you.

O que é PokeFinder?

PokeFinder é uma extensão do Chrome desenvolvida por mdc405, e sua principal característica é "Wonder what this Pokemon is? We got you.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PokeFinder

Baixe arquivos de extensão PokeFinder 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

                        Ever read an article or post about Pokemon TCG and wonder exactly what that card did and have to then pop open another tab and search for that card? Not anymore!

With this extension you can click the PokeBall on any page that mentions Pokemon TCG cards and it'll scan through the text and add a PokeBall next to any Pokemon it finds. Hovering over that PokeBall will show you a quick preview of that card right in the article! Couldn't be simpler.

I built this for myself because I was new to the game and was annoyed having to keep searching for cards to figure out exactly what they did as I was reading about decks and strategy - so I built this so I wouldn't have to do that anymore.

Hope this helps others as well!                    

Informações Básicas da Extensão

Nome PokeFinder PokeFinder
ID clfjfpgomipggphbakcdgjlnfkaeefpa
URL Oficial https://chromewebstore.google.com/detail/pokefinder/clfjfpgomipggphbakcdgjlnfkaeefpa
Descrição Wonder what this Pokemon is? We got you.
Tamanho do Arquivo 233 KB
Contagem de Instalações 118
Versão Atual 1
Última Atualização 2018-10-14
Data de Publicação 2018-10-13
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor mdc405
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PokeFinder",
    "description": "Wonder what this Pokemon is? We got you.",
    "version": "1",
    "author": "Mike Cruz",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Find Pokemon!"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "data\/*.json"
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "32": "images\/icon-32x32.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png"
    }
}