Pokemon Challenges Web Extension
Adds additional content to https://twitch.tv/pokemonchallenges
什么是Pokemon Challenges Web Extension?
Pokemon Challenges Web Extension是由everoddish开发的Chrome扩展程序,该扩展的主要功能是“Adds additional content to https://twitch.tv/pokemonchallenges”。
扩展截图
下载Pokemon Challenges Web Extension扩展crx文件
下载Pokemon Challenges Web Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows viewers of the Twitch user PokemonChallenges to see their real-time coin balance, in-game Pokemon data, and to receive notifications from the streamer. 扩展基本信息
| 名称 | |
| ID | paippbdalfnjofpngceofohenenfggel |
| 官方URL | https://chrome.google.com/webstore/detail/pokemon-challenges-web-ex/paippbdalfnjofpngceofohenenfggel |
| 简介 | Adds additional content to https://twitch.tv/pokemonchallenges |
| 文件大小 | 20.81 KB |
| 安装次数 | 10 |
| 当前版本 | 1.2 |
| 更新时间 | 2017-07-20 |
| 上架时间 | 2017-07-20 |
| 评分 | 4.86/5 共7次评分 |
| 开发者 | everoddish |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://everoddish.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Pokemon Challenges Web Extension",
"description": "Adds additional content to https:\/\/twitch.tv\/pokemonchallenges",
"version": "1.2",
"icons": {
"32": "pc_logo_32.png",
"48": "pc_logo_48.png"
},
"web_accessible_resources": [
"pc_logo_32_live.png",
"pc_logo_48.png"
],
"browser_action": {
"default_icon": {
"32": "pc_logo_32.png"
},
"default_title": "Pokemon Challenges"
},
"permissions": [
"https:\/\/www.twitch.tv\/pokemonchallenges",
"https:\/\/www.twitch.tv\/pokemonchallenges\/*",
"https:\/\/api.twitch.tv\/*",
"https:\/\/everoddish.com\/",
"notifications"
],
"content_scripts": [
{
"js": [
"pc_content.js",
"move_colours.js"
],
"css": [
"pc.css"
],
"matches": [
"https:\/\/www.twitch.tv\/pokemonchallenges",
"https:\/\/www.twitch.tv\/pokemonchallenges\/*"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [
"pc_background.js"
],
"persistent": false
}
} | |