Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
Cos'è Twitch Channel Points Auto-Clicker?
Twitch Channel Points Auto-Clicker è un'estensione di Chrome sviluppata da Francis Rhee, e la sua funzione principale è "Automatically claims Twitch channel watch rewards.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Channel Points Auto-Clicker
Scarica i file di estensione Twitch Channel Points Auto-Clicker 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
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.
Informazioni di Base sull'Estensione
Nome | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
Descrizione | Automatically claims Twitch channel watch rewards. |
Dimensione del File | 7.34 KB |
Conteggio Installazioni | 948 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-11-11 |
Data di Pubblicazione | 2020-11-11 |
Valutazione | 4.25/5 Totale 4 Valutazioni |
Sviluppatore | Francis Rhee |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |