Twitch loot auto-clicker

An extension who clicks on every twitch loot and gets you reports about it

¿Qué es Twitch loot auto-clicker?

Twitch loot auto-clicker es una extensión de Chrome desarrollada por RubenRubioM, y su función principal es "An extension who clicks on every twitch loot and gets you reports about it".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Twitch loot auto-clicker

Descarga archivos de extensión Twitch loot 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

                        It's simple, whenever a twitch lootbox is avaliable this extension will click it for you.

🚀 Stats page
⭐️ Points colected with the extension
⭐️ Time left to the next loot box to be avaliable
⭐️ Time spent watching a specific streamer
⭐️ Reset the stats everytime you want
⭐️ Bar chart
⭐️ Pie chart                    

Información Básica de la Extensión

Nombre Twitch loot auto-clicker Twitch loot auto-clicker
ID njpjlabehnoepgbbnnkokeadmcgmeoif
URL Oficial https://chromewebstore.google.com/detail/twitch-loot-auto-clicker/njpjlabehnoepgbbnnkokeadmcgmeoif
Descripción An extension who clicks on every twitch loot and gets you reports about it
Tamaño del Archivo 7.15 MB
Cantidad de Instalaciones 1,865
Versión Actual 2.3.0
Última Actualización 2021-10-17
Fecha de Publicación 2020-07-03
Calificación 4.57/5 Total de 14 Calificaciones
Desarrollador RubenRubioM
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/RubenRubioM/TwitchLootClicker
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch loot auto-clicker",
    "version": "2.3.0",
    "description": "An extension who clicks on every twitch loot and gets you reports about it",
    "icons": {
        "16": "images\/appIcon16.png",
        "32": "images\/appIcon32.png",
        "48": "images\/appIcon48.png",
        "128": "images\/appIcon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/appIcon16.png",
            "32": "images\/appIcon32.png",
            "48": "images\/appIcon48.png",
            "128": "images\/appIcon128.png"
        }
    },
    "author": "Rub\u00e9n Rubio Mart\u00ednez",
    "host_permissions": [
        "http:\/\/www.twitch.com\/",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js",
                "functions.js",
                "constants.js"
            ]
        }
    ],
    "options_page": "options.html",
    "offline_enabled": false,
    "permissions": [
        "storage"
    ]
}