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…
What is Twitch Shadow Ban?
Twitch Shadow Ban is a Chrome extension developed by Unknown, and its main feature is "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…".
Extension Screenshots
Download Twitch Shadow Ban Extension CRX File
Download Twitch Shadow Ban extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | Twitch Shadow Ban |
ID | lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Official URL | https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Description | 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… |
File Size | 6.62 KB |
Installation Count | 116 |
Current Version | 1.0 |
Last Updated | 2018-09-02 |
Publish Date | 2018-09-02 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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" } } |