Pokemon Showdown Type Helper

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

Pokemon Showdown Type Helper là gì?

Pokemon Showdown Type Helper là một tiện ích mở rộng Chrome được phát triển bởi coltonjmsblake, và tính năng chính của nó là "Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pokemon Showdown Type Helper

Tải xuống các tệp mở rộng Pokemon Showdown Type Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pokemon Showdown Type Helper Pokemon Showdown Type Helper
ID ajhdnfehenofjfbajfdhjoankdheielc
URL Chính Thức https://chromewebstore.google.com/detail/pokemon-showdown-type-hel/ajhdnfehenofjfbajfdhjoankdheielc
Mô tả Enhances Pokemon Showdown tooltips with additional information, including type weaknesses and stats.
Kích Thước Tệp 35.39 KB
Số Lần Cài Đặt 4,690
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2023-06-30
Ngày Phát Hành 2022-04-04
Đánh Giá 4.86/5 Tổng số 14 Đánh Giá
Nhà Phát Triển coltonjmsblake
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/coltonb/pokemon-showdown-type-helper
URL Trang Trợ Giúp https://github.com/coltonb/pokemon-showdown-type-helper/issues
Ngôn Ngữ Được Hỗ Trợ 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}"
        }
    }
}