Pokémon Showdown Enhanced Tooltips

Displays additional information on tooltips of Pokémon Showdown.

Pokémon Showdown Enhanced Tooltips là gì?

Pokémon Showdown Enhanced Tooltips là một tiện ích mở rộng Chrome được phát triển bởi generisk, và tính năng chính của nó là "Displays additional information on tooltips of Pokémon Showdown.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pokémon Showdown Enhanced Tooltips

Tải xuống các tệp mở rộng Pokémon Showdown Enhanced Tooltips 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

                        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                    

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

Tên Pokémon Showdown Enhanced Tooltips Pokémon Showdown Enhanced Tooltips
ID aggbolenhnpdhgcfpknifdiheppbmblb
URL Chính Thức https://chrome.google.com/webstore/detail/pok%C3%A9mon-showdown-enhanced/aggbolenhnpdhgcfpknifdiheppbmblb
Mô tả Displays additional information on tooltips of Pokémon Showdown.
Kích Thước Tệp 38.39 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.2.1.1
Cập Nhật Lần Cuối 2021-05-05
Ngày Phát Hành 2021-04-21
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển generisk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips
URL Trang Trợ Giúp https://github.com/generiskk/Pokemon-Showdown-Enhanced-Tooltips
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}