Twitch Shadow Ban
Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their…
Twitch Shadow Ban क्या है?
Twitch Shadow Ban Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Shadow Ban एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their messages from the chat without letting them know. The extension is still in alpha and has very phew options such as: - shadow ban one or more users - remove shadow ban from all users ( requires web-page refresh as of now)
एक्सटेंशन की मूल जानकारी
नाम | Twitch Shadow Ban |
ID | lkadmebjjhhkobnppjbgdcdpmpfhiflj |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj |
विवरण | Simple extension that let's you shadow ban people on twitch. Of course it is not banning them for real, but it simply hides their… |
फ़ाइल का आकार | 6.62 KB |
स्थापना संख्या | 116 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2018-09-02 |
प्रकाशन तिथि | 2018-09-02 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Shadow Ban", "version": "1.0", "permissions": [ "background", "storage", "tabs", "https:\/\/www.twitch.tv\/*" ], "icons": { "16": "16_16.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |