Twitch Channel Points Autoclicker
Automatically claims 'Channel Points' on Twitch
Wat is Twitch Channel Points Autoclicker?
Twitch Channel Points Autoclicker is een Chrome-extensie ontwikkeld door xinitrc, en de belangrijkste functie is "Automatically claims 'Channel Points' on Twitch".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Channel Points Autoclicker
Download Twitch Channel Points Autoclicker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Twitch Channel Points Autoclicker |
ID | pbeamibpehihpjljabhnchghlbneiane |
Officiële URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane |
Beschrijving | Automatically claims 'Channel Points' on Twitch |
Bestandsgrootte | 110 KB |
Aantal Installaties | 140,516 |
Huidige Versie | 1.6.1 |
Laatst Bijgewerkt | 2021-01-14 |
Publicatiedatum | 2020-05-05 |
Beoordeling | 3.88/5 Totaal 134 Beoordelingen |
Ontwikkelaar | xinitrc |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://xinitrc.ca/autoclicker-permissions |
Ondersteunde Talen | 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" } } |