Twitch Pokemon Helper
Helps attain pokemon badges the TwitchPresents stream.
什么是Twitch Pokemon Helper?
Twitch Pokemon Helper是由Xeio开发的Chrome扩展程序,该扩展的主要功能是“Helps attain pokemon badges the TwitchPresents stream.”。
扩展截图
下载Twitch Pokemon Helper扩展crx文件
下载Twitch Pokemon Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
For the TwitchPresents Pokemon anime stream.
Plays sounds when badges appear on stream. Can play separate sounds for new or already-owned badges. Options can be changed by clicking the extension button.
If an Ad is visible when a badge appears, this extension will make the badge extension visible and clickable even if it wouldn't normally be. This feature is disabled by default. 扩展基本信息
| 名称 | |
| ID | lkiomiclaaoehjemoljiekcfaofkomkl |
| 官方URL | https://chromewebstore.google.com/detail/twitch-pokemon-helper/lkiomiclaaoehjemoljiekcfaofkomkl |
| 简介 | Helps attain pokemon badges the TwitchPresents stream. |
| 文件大小 | 116 KB |
| 安装次数 | 343 |
| 当前版本 | 1.2.2 |
| 更新时间 | 2018-09-18 |
| 上架时间 | 2018-09-18 |
| 评分 | 4.82/5 共22次评分 |
| 开发者 | Xeio |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Xeio/TwitchPokemonHelper |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitch Pokemon Helper",
"version": "1.2.2",
"manifest_version": 2,
"description": "Helps attain pokemon badges the TwitchPresents stream.",
"permissions": [
"storage"
],
"optional_permissions": [
"https:\/\/www.twitch.tv\/twitchpresents"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.ext-twitch.tv\/*"
],
"all_frames": true,
"js": [
"src\/inject.js"
]
}
],
"background": {
"scripts": [
"src\/preferences.js",
"src\/bg.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "src\/options.html"
},
"web_accessible_resources": [
"src\/pageInject.js"
],
"externally_connectable": {
"matches": [
"*:\/\/*.ext-twitch.tv\/*"
]
}
} | |