Twitch Channel Points Autoclicker
Automatically claims 'Channel Points' on Twitch
什么是Twitch Channel Points Autoclicker?
Twitch Channel Points Autoclicker是由xinitrc开发的Chrome扩展程序,该扩展的主要功能是“Automatically claims 'Channel Points' on Twitch”。
扩展截图
下载Twitch Channel Points Autoclicker扩展crx文件
下载Twitch Channel Points Autoclicker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically claims 'Channel Points' on Twitch for the channel you are watching.
LITE version that requires no permissions is also available: https://chrome.google.com/webstore/detail/fapndfdannkgofolmaihpbigbolcobek/
Also available for Mozilla Firefox: https://addons.mozilla.org/en-GB/firefox/addon/twitch-points-autoclicker/
What permissions are used and why: https://xinitrc.ca/autoclicker-permissions/
Note: May not be compatible with some twitch design changing extensions.
Available on GitHub: https://github.com/xinitrc-dev/twitch-points-autoclicker 扩展基本信息
| 名称 | |
| ID | pbeamibpehihpjljabhnchghlbneiane |
| 官方URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane |
| 简介 | Automatically claims 'Channel Points' on Twitch |
| 文件大小 | 110 KB |
| 安装次数 | 140,516 |
| 当前版本 | 1.6.1 |
| 更新时间 | 2021-01-14 |
| 上架时间 | 2020-05-05 |
| 评分 | 3.88/5 共134次评分 |
| 开发者 | xinitrc |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://xinitrc.ca/autoclicker-permissions |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitch Channel Points Autoclicker",
"description": "Automatically claims 'Channel Points' on Twitch",
"version": "1.6.1",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"arrive-2.4.1.min.js",
"twitch-clicker.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"*:\/\/*.twitch.tv\/*",
"tabs",
"storage",
"notifications",
"webNavigation"
],
"web_accessible_resources": [
"arrive-2.4.1.min.js",
"twitch-clicker.js"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_action": {
"default_title": "Channel Points Autoclicker",
"default_icon": {
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup.html"
}
} | |