Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
Was ist Twitch Channel Points Auto-Clicker?
Twitch Channel Points Auto-Clicker ist eine Chrome-Erweiterung, die von Francis Rhee entwickelt wurde, und ihr Hauptmerkmal ist "Automatically claims Twitch channel watch rewards.".
Erweiterungsscreenshots
Twitch Channel Points Auto-Clicker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch Channel Points Auto-Clicker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
Offizielle URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
Beschreibung | Automatically claims Twitch channel watch rewards. |
Dateigröße | 7.34 KB |
Installationsanzahl | 948 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-11-11 |
Veröffentlichungsdatum | 2020-11-11 |
Bewertung | 4.25/5 Insgesamt 4 Bewertungen |
Entwickler | Francis Rhee |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |