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…
Wat is Twitch Shadow Ban?
Twitch Shadow Ban is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie 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…".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Shadow Ban
Download Twitch Shadow Ban-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | Twitch Shadow Ban |
ID | lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Officiële URL | https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Beschrijving | 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… |
Bestandsgrootte | 6.62 KB |
Aantal Installaties | 116 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-09-02 |
Publicatiedatum | 2018-09-02 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |