Twitch Channel Points Autoclicker
Automatically claims 'Channel Points' on Twitch
What is Twitch Channel Points Autoclicker?
Twitch Channel Points Autoclicker is a Chrome extension developed by xinitrc, and its main feature is "Automatically claims 'Channel Points' on Twitch".
Extension Screenshots
Download Twitch Channel Points Autoclicker Extension CRX File
Download Twitch Channel Points Autoclicker 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
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
Extension Basic Information
Name | Twitch Channel Points Autoclicker |
ID | pbeamibpehihpjljabhnchghlbneiane |
Official URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane |
Description | Automatically claims 'Channel Points' on Twitch |
File Size | 110 KB |
Installation Count | 140,516 |
Current Version | 1.6.1 |
Last Updated | 2021-01-14 |
Publish Date | 2020-05-05 |
Rating | 3.88/5 Total 134 Ratings |
Developer | xinitrc |
[email protected] | |
Payment Type | free |
Help Page URL | https://xinitrc.ca/autoclicker-permissions |
Supported Languages | 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" } } |