Pokémon Showdown Enhanced Tooltips

Displays additional information on tooltips of Pokémon Showdown.

Pokémon Showdown Enhanced Tooltips란 무엇입니까?

Pokémon Showdown Enhanced Tooltips은(는) generisk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays additional information on tooltips of Pokémon Showdown."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Pokémon Showdown Enhanced Tooltips 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NOTE!! - This is an updated version, as the original dev has not updated this project. 

Displays additional information on tooltips of Pokémon Showdown.
Enhanced tooltips for Pokemon Showdown.  This extension provides additional information and functionality on the tooltips of Pokemon.

Please try turning base stats on/off if the extension doesn't seem to be working. If the issue persists, please submit an issue on Github.

- Type effectiveness and respective multipliers
- Move type and category (physical or special) icons
- Height and weight
- Move base power
- Click Pokemon name to open their Smogon page in a new tab
- Base stats (optional)

Optional settings can be configured in the extension panel.

Thanks to all those contributed to the project:
Karl Hughes - https://github.com/karllhughes
Also huge thanks to Chris Schalago as the original creator of this addon. - https://github.com/rowin1/Pokemon-Showdown-Enhanced-Tooltips

If you would like to open an issue or contribute, please see the repo on Github: https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips                    

확장 프로그램 기본 정보

이름 Pokémon Showdown Enhanced Tooltips Pokémon Showdown Enhanced Tooltips
ID aggbolenhnpdhgcfpknifdiheppbmblb
공식 URL https://chrome.google.com/webstore/detail/pok%C3%A9mon-showdown-enhanced/aggbolenhnpdhgcfpknifdiheppbmblb
설명 Displays additional information on tooltips of Pokémon Showdown.
파일 크기 38.39 KB
설치 횟수 1,000
현재 버전 1.2.1.1
최근 업데이트 2021-05-05
출시 날짜 2021-04-21
평점 5.00/5 총 5 개의 평점
개발자 generisk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips
도움말 페이지 URL https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pok\u00e9mon Showdown Enhanced Tooltips",
    "description": "Displays additional information on tooltips of Pok\u00e9mon Showdown.",
    "version": "1.2.1.1",
    "manifest_version": 2,
    "icons": {
        "16": "\/icons\/icon.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "64": "\/icons\/icon64.png",
        "128": "\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "\/js\/settingsMenu.js"
        ]
    },
    "browser_action": {
        "default_icon": "\/icons\/icon.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "*:\/\/play.pokemonshowdown.com\/*",
        "*:\/\/*.psim.us\/*"
    ],
    "web_accessible_resources": [
        "\/js\/showPokemonTooltip.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.pokemonshowdown.com\/*",
                "*:\/\/*.psim.us\/*"
            ],
            "css": [
                "\/css\/style.css"
            ],
            "js": [
                "\/js\/main.js"
            ]
        }
    ]
}