Twitch ChestClicker
ChestClicker for Twitch
什么是Twitch ChestClicker?
Twitch ChestClicker是由spddl开发的Chrome扩展程序,该扩展的主要功能是“ChestClicker for Twitch”。
扩展截图
下载Twitch ChestClicker扩展crx文件
下载Twitch ChestClicker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically collects the Twitch.tv chests that you actually have to click.
This works sparingly via the https://developer.mozilla.org/de/docs/Web/API/MutationObserver API 扩展基本信息
| 名称 | |
| ID | mdjllaihmfallpabkcdjnklhnpfiadbh |
| 官方URL | https://chromewebstore.google.com/detail/twitch-chestclicker/mdjllaihmfallpabkcdjnklhnpfiadbh |
| 简介 | ChestClicker for Twitch |
| 文件大小 | 18.43 KB |
| 安装次数 | 37 |
| 当前版本 | 0.0.9 |
| 更新时间 | 2021-07-04 |
| 上架时间 | 2020-09-04 |
| 开发者 | spddl |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/spddl/Twitch-ChestClicker |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitch ChestClicker",
"description": "ChestClicker for Twitch",
"version": "0.0.9",
"icons": {
"48": "logo48.png",
"128": "logo128.png",
"256": "logo256.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs"
],
"host_permissions": [
"*:\/\/*.twitch.tv\/*"
],
"action": {
"default_title": "Twitch ChestClicker",
"default_icon": {
"48": "logo48.png",
"128": "logo128.png",
"256": "logo256.png"
}
}
} | |