Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
什么是Twitch Channel Points Auto-Clicker?
Twitch Channel Points Auto-Clicker是由Francis Rhee开发的Chrome扩展程序,该扩展的主要功能是“Automatically claims Twitch channel watch rewards.”。
扩展截图
下载Twitch Channel Points Auto-Clicker扩展crx文件
下载Twitch Channel Points Auto-Clicker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Have you ever been in a different tab or been away while leaving a stream on, and came back to the stream realizing you could've claimed your watch reward a long time ago? This extension allows you to sit back and focus your attention on other things while it claims your points automatically for you, instead of needing to periodically checking on the chat to claim your rewards.
扩展基本信息
名称 | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
官方URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
简介 | Automatically claims Twitch channel watch rewards. |
文件大小 | 7.34 KB |
安装次数 | 948 |
当前版本 | 1.0 |
更新时间 | 2020-11-11 |
上架时间 | 2020-11-11 |
评分 | 4.25/5 共4次评分 |
开发者 | Francis Rhee |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Channel Points Auto-Clicker", "version": "1.0", "description": "Automatically claims Twitch channel watch rewards.", "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |