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.”。
扩展截图
下载Pokemon Showdown Type Helper扩展crx文件
下载Pokemon Showdown Type Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension for displaying stats, type weaknesses, resistances, and immunities in Pokemon Showdown. 扩展基本信息
| 名称 | |
| 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}"
}
}
} | |