Pokémon Showdown Enhanced Tooltips
Displays additional information on tooltips of Pokémon Showdown.
什么是Pokémon Showdown Enhanced Tooltips?
Pokémon Showdown Enhanced Tooltips是由schalagodev开发的Chrome扩展程序,该扩展的主要功能是“Displays additional information on tooltips of Pokémon Showdown.”。
扩展截图
下载Pokémon Showdown Enhanced Tooltips扩展crx文件
下载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
扩展基本信息
名称 | ![]() |
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" ] } ] } |