Twitch Auto Channel Points Collector
Automatically collect channel points while you are watching someone on twitch.tv!
¿Qué es Twitch Auto Channel Points Collector?
Twitch Auto Channel Points Collector es una extensión de Chrome desarrollada por https://jerejacobson.com, y su función principal es "Automatically collect channel points while you are watching someone on twitch.tv!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Auto Channel Points Collector
Descarga archivos de extensión Twitch Auto Channel Points Collector 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
This is an extension for twitch.tv that will auto click on channel point gifts for you.
Información Básica de la Extensión
Nombre | Twitch Auto Channel Points Collector |
ID | jhkcenchneiejpdcglhdodfokjabojfp |
URL Oficial | https://chromewebstore.google.com/detail/twitch-auto-channel-point/jhkcenchneiejpdcglhdodfokjabojfp |
Descripción | Automatically collect channel points while you are watching someone on twitch.tv! |
Tamaño del Archivo | 46.46 KB |
Cantidad de Instalaciones | 153 |
Versión Actual | 0.0.0.2 |
Última Actualización | 2022-02-01 |
Fecha de Publicación | 2022-01-14 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://jerejacobson.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.jerejacobson.com/posts/buildchromeextension/ |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Auto Channel Points Collector", "description": "Automatically collect channel points while you are watching someone on twitch.tv!", "version": "0.0.0.2", "manifest_version": 3, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "css": [ "style.css" ], "default_icon": { "16": "\/images\/channel16.png", "32": "\/images\/channel32.png", "48": "\/images\/channel48.png", "128": "\/images\/channel128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "thirdParty\/jquery-3.6.0.min.js", "content-script.js" ] } ], "icons": { "16": "\/images\/channel16.png", "32": "\/images\/channel32.png", "48": "\/images\/channel48.png", "128": "\/images\/channel128.png" } } |