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…
Was ist Twitch Loot Collector?
Twitch Loot Collector ist eine Chrome-Erweiterung, die von Coding Castle entwickelt wurde, und ihr Hauptmerkmal ist "This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…".
Erweiterungsscreenshots
Twitch Loot Collector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch Loot Collector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Twitch Loot Collector |
ID | okagcggpdlegjpllohppffkailcjlcdp |
Offizielle URL | https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp |
Beschreibung | This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream… |
Dateigröße | 11.94 KB |
Installationsanzahl | 157 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-05-25 |
Veröffentlichungsdatum | 2021-05-24 |
Entwickler | Coding Castle |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |