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…
Cos'è Twitch Shadow Ban?
Twitch Shadow Ban è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "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…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Shadow Ban
Scarica i file di estensione Twitch Shadow Ban 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
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)
Informazioni di Base sull'Estensione
Nome | Twitch Shadow Ban |
ID | lkadmebjjhhkobnppjbgdcdpmpfhiflj |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Descrizione | 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… |
Dimensione del File | 6.62 KB |
Conteggio Installazioni | 116 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-09-02 |
Data di Pubblicazione | 2018-09-02 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |