Pokemon Showdown Type Helper

Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.

什麼是Pokemon Showdown Type Helper?

Pokemon Showdown Type Helper是由coltonjmsblake開發的Chrome擴展程式,該擴展的主要功能是“Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.”。

擴展截圖

screenshot

下載Pokemon Showdown Type Helper擴展crx文件

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

擴展使用說明

                        An extension for displaying stats, type weaknesses, resistances, and immunities in Pokemon Showdown.                    

擴展基本資訊

名稱 Pokemon Showdown Type Helper Pokemon Showdown Type Helper
ID ajhdnfehenofjfbajfdhjoankdheielc
官方網址 https://chromewebstore.google.com/detail/pokemon-showdown-type-hel/ajhdnfehenofjfbajfdhjoankdheielc
簡介 Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.
檔案大小 35.39 KB
安裝次數 4,690
目前版本 0.0.8
更新時間 2023-06-30
上架時間 2022-04-04
評分 4.86/5 共 14 次評分
開發者 coltonjmsblake
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/coltonb/pokemon-showdown-type-helper
說明頁面URL https://github.com/coltonb/pokemon-showdown-type-helper/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pokemon Showdown Type Helper",
    "description": "Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.",
    "version": "0.0.8",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "pokemonShowdownTypeHelper.js"
            ],
            "matches": [
                "https:\/\/play.pokemonshowdown.com\/*",
                "https:\/\/*.psim.us\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.pokemonshowdown.com\/*",
                "https:\/\/*.psim.us\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{9959496f-a6b0-4bf4-a77d-0c1697b50f96}"
        }
    }
}