Twitch Loot Collector

This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…

Co je Twitch Loot Collector?

Twitch Loot Collector je rozšíření Chrome vyvinuté Coding Castle, a jeho hlavní funkcí je „This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Twitch Loot Collector

Stáhněte si soubory rozšíření Twitch Loot Collector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream it can be annoying if this little green box pops up wanting to be clicked. That's why I created this extension. You can also disable the automated clicking with a simple switch within the extension panel. I'm always happy about feedback.                    

Základní Informace o Rozšíření

Název Twitch Loot Collector Twitch Loot Collector
ID okagcggpdlegjpllohppffkailcjlcdp
Oficiální URL https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp
Popis This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…
Velikost souboru 11.94 KB
Počet instalací 157
Aktuální Verze 1.0
Poslední Aktualizace 2021-05-25
Datum Vydání 2021-05-24
Vývojář Coding Castle
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Loot Collector",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitch.tv\/*",
                "http:\/\/twitch.tv\/*",
                "https:\/\/www.twitch.tv\/*",
                "http:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "LootCollector.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/twitch_loot_16x16.png",
            "32": "\/images\/twitch_loot_32x32.png",
            "48": "\/images\/twitch_loot_48x48.png",
            "128": "\/images\/twitch_loot_128x128.png"
        }
    },
    "icons": {
        "16": "\/images\/twitch_loot_16x16.png",
        "32": "\/images\/twitch_loot_32x32.png",
        "48": "\/images\/twitch_loot_48x48.png",
        "128": "\/images\/twitch_loot_128x128.png"
    }
}