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…
Cos'è Twitch Loot Collector?
Twitch Loot Collector è un'estensione di Chrome sviluppata da Coding Castle, e la sua funzione principale è "This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Loot Collector
Scarica i file di estensione Twitch Loot Collector 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
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.
Informazioni di Base sull'Estensione
Nome | Twitch Loot Collector |
ID | okagcggpdlegjpllohppffkailcjlcdp |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp |
Descrizione | This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream… |
Dimensione del File | 11.94 KB |
Conteggio Installazioni | 157 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-05-25 |
Data di Pubblicazione | 2021-05-24 |
Sviluppatore | Coding Castle |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |