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…
Twitch Loot Collector क्या है?
Twitch Loot Collector Coding Castle द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Loot Collector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Twitch Loot Collector |
ID | okagcggpdlegjpllohppffkailcjlcdp |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp |
विवरण | This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream… |
फ़ाइल का आकार | 11.94 KB |
स्थापना संख्या | 157 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2021-05-25 |
प्रकाशन तिथि | 2021-05-24 |
डेवलपर | Coding Castle |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |