Twitch loot auto-clicker

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

Cos'è Twitch loot auto-clicker?

Twitch loot auto-clicker è un'estensione di Chrome sviluppata da RubenRubioM, e la sua funzione principale è "An extension who clicks on every twitch loot and gets you reports about it".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Twitch loot auto-clicker

Scarica i file di estensione Twitch loot auto-clicker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Twitch loot auto-clicker Twitch loot auto-clicker
ID njpjlabehnoepgbbnnkokeadmcgmeoif
URL Ufficiale https://chromewebstore.google.com/detail/twitch-loot-auto-clicker/njpjlabehnoepgbbnnkokeadmcgmeoif
Descrizione An extension who clicks on every twitch loot and gets you reports about it
Dimensione del File 7.15 MB
Conteggio Installazioni 1,865
Versione Corrente 2.3.0
Ultimo Aggiornamento 2021-10-17
Data di Pubblicazione 2020-07-03
Valutazione 4.57/5 Totale 14 Valutazioni
Sviluppatore RubenRubioM
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/RubenRubioM/TwitchLootClicker
Lingue Supportate 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"
    ]
}