Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
What is Twitch Channel Points Auto-Clicker?
Twitch Channel Points Auto-Clicker is a Chrome extension developed by Francis Rhee, and its main feature is "Automatically claims Twitch channel watch rewards.".
Extension Screenshots
Download Twitch Channel Points Auto-Clicker Extension CRX File
Download Twitch Channel Points Auto-Clicker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
Official URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
Description | Automatically claims Twitch channel watch rewards. |
File Size | 7.34 KB |
Installation Count | 948 |
Current Version | 1.0 |
Last Updated | 2020-11-11 |
Publish Date | 2020-11-11 |
Rating | 4.25/5 Total 4 Ratings |
Developer | Francis Rhee |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |