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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Pokemon Showdown Type Helper Pokemon Showdown Type Helper
ID ajhdnfehenofjfbajfdhjoankdheielc
공식 URL 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}"
        }
    }
}