Twitch - Bonus Collector
Automatic collection of bonuses for Twitch chat. You don't have to worry about getting bonuses. The extension will do it for you.
什么是Twitch - Bonus Collector?
Twitch - Bonus Collector是由Alexander Gerasimov开发的Chrome扩展程序,该扩展的主要功能是“Automatic collection of bonuses for Twitch chat. You don't have to worry about getting bonuses. The extension will do it for you.”。
扩展截图
下载Twitch - Bonus Collector扩展crx文件
下载Twitch - Bonus Collector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple use! Nothing extra! 扩展基本信息
| 名称 | |
| ID | dlohmjidoachadcbejnkpaikmgphoilo |
| 官方URL | https://chrome.google.com/webstore/detail/twitch-bonus-collector/dlohmjidoachadcbejnkpaikmgphoilo |
| 简介 | Automatic collection of bonuses for Twitch chat. You don't have to worry about getting bonuses. The extension will do it for you. |
| 文件大小 | 70.15 KB |
| 安装次数 | 322 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2021-05-19 |
| 上架时间 | 2020-04-16 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Alexander Gerasimov |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"minimum_chrome_version": "22.0",
"name": "Twitch - Bonus Collector",
"description": "Automatic collection of bonuses for Twitch chat. You don't have to worry about getting bonuses. The extension will do it for you.",
"version": "1.0.5",
"author": "Alexander Gerasimov",
"icons": {
"16": "img\/icon16.png",
"32": "img\/icon32.png",
"48": "img\/icon48.png",
"64": "img\/icon64.png"
},
"browser_action": {
"default_title": "Twitch - Bonus Collector",
"default_popup": "popup.html",
"default_icon": {
"16": "img\/icon16.png",
"32": "img\/icon32.png",
"48": "img\/icon48.png",
"64": "img\/icon64.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"js\/vendor\/jquery\/jquery-3.2.1.slim.min.js",
"js\/core.js",
"js\/content.js"
],
"css": [
"css\/content.css"
]
}
],
"background": {
"scripts": [
"js\/vendor\/jquery\/jquery-3.2.1.slim.min.js",
"js\/core.js",
"js\/background.js"
]
},
"permissions": [
"storage",
"activeTab",
"https:\/\/www.twitch.tv\/*"
]
} | |