Twitch Channel Points Autoclicker
Automatically claims 'Channel Points' on Twitch
Cos'è Twitch Channel Points Autoclicker?
Twitch Channel Points Autoclicker è un'estensione di Chrome sviluppata da xinitrc, e la sua funzione principale è "Automatically claims 'Channel Points' on Twitch".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Channel Points Autoclicker
Scarica i file di estensione Twitch Channel Points Autoclicker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Twitch Channel Points Autoclicker |
ID | pbeamibpehihpjljabhnchghlbneiane |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane |
Descrizione | Automatically claims 'Channel Points' on Twitch |
Dimensione del File | 110 KB |
Conteggio Installazioni | 140,516 |
Versione Corrente | 1.6.1 |
Ultimo Aggiornamento | 2021-01-14 |
Data di Pubblicazione | 2020-05-05 |
Valutazione | 3.88/5 Totale 134 Valutazioni |
Sviluppatore | xinitrc |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://xinitrc.ca/autoclicker-permissions |
Lingue Supportate | 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" } } |