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…

Co to jest Twitch Shadow Ban?

Twitch Shadow Ban to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „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…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch Shadow Ban

Pobierz pliki rozszerzeń Twitch Shadow Ban w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Shadow Ban Twitch Shadow Ban
ID lkadmebjjhhkobnppjbgdcdpmpfhiflj
Oficjalny URL https://chromewebstore.google.com/detail/twitch-shadow-ban/lkadmebjjhhkobnppjbgdcdpmpfhiflj
Opis 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…
Rozmiar pliku 6.62 KB
Liczba instalacji 116
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-09-02
Data Publikacji 2018-09-02
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    }
}