Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
¿Qué es Twitch Channel Points Auto-Clicker?
Twitch Channel Points Auto-Clicker es una extensión de Chrome desarrollada por Francis Rhee, y su función principal es "Automatically claims Twitch channel watch rewards.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Channel Points Auto-Clicker
Descarga archivos de extensión Twitch Channel Points Auto-Clicker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
URL Oficial | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
Descripción | Automatically claims Twitch channel watch rewards. |
Tamaño del Archivo | 7.34 KB |
Cantidad de Instalaciones | 948 |
Versión Actual | 1.0 |
Última Actualización | 2020-11-11 |
Fecha de Publicación | 2020-11-11 |
Calificación | 4.25/5 Total de 4 Calificaciones |
Desarrollador | Francis Rhee |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |