Twitch Channel Points Gift Box Plugin

This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.

¿Qué es Twitch Channel Points Gift Box Plugin?

Twitch Channel Points Gift Box Plugin es una extensión de Chrome desarrollada por Paul Purifoy, y su función principal es "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Twitch Channel Points Gift Box Plugin

Descarga archivos de extensión Twitch Channel Points Gift Box Plugin 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 chrome extension is used for Twitch to automatically collect the channel point gift boxes which award extra channel points to spend. These channel points can be used to purchase rewards from the streamer's channel for your dedication to their stream. The extension tracks how many gift boxes it has collected and runs in the background so all you have to do is open a new tab and navigate to the streamer(s) that you want to collect from. Spawn as many tabs as you want and it will collect the channel point gift boxes from each stream you have started!                    

Información Básica de la Extensión

Nombre Twitch Channel Points Gift Box Plugin Twitch Channel Points Gift Box Plugin
ID hjbkfjkfeohfbmjcanfignhjmpgjlfba
URL Oficial https://chromewebstore.google.com/detail/twitch-channel-points-gif/hjbkfjkfeohfbmjcanfignhjmpgjlfba
Descripción This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.
Tamaño del Archivo 366 KB
Cantidad de Instalaciones 189
Versión Actual 1.0
Última Actualización 2020-05-07
Fecha de Publicación 2020-05-06
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador Paul Purifoy
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Channel Points Gift Box Plugin",
    "description": "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "poll.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Channel Points",
        "default_icon": "gift-box.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/www.twitch.tv\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}