Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
Qu'est-ce que Twitch Channel Points Auto-Clicker ?
Twitch Channel Points Auto-Clicker est une extension Chrome développée par Francis Rhee, et sa fonction principale est "Automatically claims Twitch channel watch rewards.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch Channel Points Auto-Clicker
Téléchargez les fichiers d'extension Twitch Channel Points Auto-Clicker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
URL Officiel | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
Description | Automatically claims Twitch channel watch rewards. |
Taille du Fichier | 7.34 KB |
Nombre d'Installations | 948 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-11-11 |
Date de Publication | 2020-11-11 |
Évaluation | 4.25/5 Total 4 Évaluations |
Développeur | Francis Rhee |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |