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…
Hvad er Twitch Shadow Ban?
Twitch Shadow Ban er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "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…".
Udvidelsesskærmbilleder
Download Twitch Shadow Ban-udvidelses-CRX-fil
Download Twitch Shadow Ban-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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)
Grundlæggende oplysninger om udvidelsen
Navn | Twitch Shadow Ban |
ID | lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Officiel URL | https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj |
Beskrivelse | 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… |
Filstørrelse | 6.62 KB |
Antal Installationer | 116 |
Nuværende Version | 1.0 |
Senest Opdateret | 2018-09-02 |
Udgivelsesdato | 2018-09-02 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |