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…

Qu'est-ce que Twitch Loot Collector ?

Twitch Loot Collector est une extension Chrome développée par Coding Castle, et sa fonction principale est "This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitch Loot Collector

Téléchargez les fichiers d'extension Twitch Loot Collector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitch Loot Collector Twitch Loot Collector
ID okagcggpdlegjpllohppffkailcjlcdp
URL Officiel https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp
Description This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…
Taille du Fichier 11.94 KB
Nombre d'Installations 157
Version Actuelle 1.0
Dernière Mise à Jour 2021-05-25
Date de Publication 2021-05-24
Développeur Coding Castle
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}