Pokedex Linker

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

Was ist Pokedex Linker?

Pokedex Linker ist eine Chrome-Erweiterung, die von https://thepoke.de entwickelt wurde, und ihr Hauptmerkmal ist "Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.".

Erweiterungsscreenshots

screenshot

Pokedex Linker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pokedex Linker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Pokedex Linker Pokedex Linker
ID cafmpknaihmoehhoehfcfpnjdmcpffee
Offizielle URL https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee
Beschreibung Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
Dateigröße 168 KB
Installationsanzahl 77
Aktuelle Version 3.6
Letztes Update 2020-06-03
Veröffentlichungsdatum 2020-06-02
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://thepoke.de
Zahlungsart free
Erweiterungswebsite https://thepoke.de/x/
Unterstützte Sprachen 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"
            ]
        }
    ]
}