Pokémon Showdown Enhanced Tooltips

Displays additional information on tooltips of Pokémon Showdown.

Pokémon Showdown Enhanced Tooltipsคืออะไร?

Pokémon Showdown Enhanced Tooltips เป็นส่วนขยายของ Chrome ที่พัฒนาโดย schalagodev และคุณลักษณะหลักของมันคือ "Displays additional information on tooltips of Pokémon Showdown."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pokémon Showdown Enhanced Tooltips

ดาวน์โหลดไฟล์ส่วนขยาย Pokémon Showdown Enhanced Tooltips ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pokémon Showdown Enhanced Tooltips Pokémon Showdown Enhanced Tooltips
ID ehfemiiogehggdcmnpinokioccpijcfc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/pok%C3%A9mon-showdown-enhanced/ehfemiiogehggdcmnpinokioccpijcfc
คำอธิบาย Displays additional information on tooltips of Pokémon Showdown.
ขนาดไฟล์ 37.45 KB
จำนวนการติดตั้ง 921
เวอร์ชันปัจจุบัน 1.2.3.0
อัปเดตครั้งล่าสุด 2020-07-19
วันที่เผยแพร่ 2020-03-31
คะแนน 4.35/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา schalagodev
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/rowin1/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.3.0",
    "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"
            ]
        }
    ]
}