Pokedex Linker

Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.

Cos'è Pokedex Linker?

Pokedex Linker è un'estensione di Chrome sviluppata da https://thepoke.de, e la sua funzione principale è "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pokedex Linker

Scarica i file di estensione Pokedex Linker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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).                    

Informazioni di Base sull'Estensione

Nome Pokedex Linker Pokedex Linker
ID cafmpknaihmoehhoehfcfpnjdmcpffee
URL Ufficiale https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee
Descrizione Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
Dimensione del File 168 KB
Conteggio Installazioni 77
Versione Corrente 3.6
Ultimo Aggiornamento 2020-06-03
Data di Pubblicazione 2020-06-02
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://thepoke.de
Tipo di Pagamento free
Sito Web dell'Estensione https://thepoke.de/x/
Lingue Supportate 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"
            ]
        }
    ]
}