Pokedex Linker

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

什麼是Pokedex Linker?

Pokedex Linker是由https://thepoke.de開發的Chrome擴展程式,該擴展的主要功能是“Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.”。

擴展截圖

screenshot

下載Pokedex Linker擴展crx文件

下載Pokedex Linker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Pokedex Linker Pokedex Linker
ID cafmpknaihmoehhoehfcfpnjdmcpffee
官方網址 https://chromewebstore.google.com/detail/pokedex-linker/cafmpknaihmoehhoehfcfpnjdmcpffee
簡介 Converts pokemon names to links that open up ThePoke.de/x/ with easy access info when you hover over the link.
檔案大小 168 KB
安裝次數 77
目前版本 3.6
更新時間 2020-06-03
上架時間 2020-06-02
評分 5.00/5 共 3 次評分
開發者 https://thepoke.de
付費類型 free
擴展官網 https://thepoke.de/x/
支援的語言 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"
            ]
        }
    ]
}