Twitch Brightness Reducer

Controls brightness of the videoplayer in twitch.

Co to jest Twitch Brightness Reducer?

Twitch Brightness Reducer to rozszerzenie Chrome opracowane przez sougataghar47, a jego główną funkcją jest „Controls brightness of the videoplayer in twitch.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch Brightness Reducer

Pobierz pliki rozszerzeń Twitch Brightness Reducer 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

                        This extension Controls brightness of the video player  in twitch. Useful for when you are watching twitch at night.                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Brightness Reducer Twitch Brightness Reducer
ID bigbbjepoigjhcbepeahdepmjbnjodek
Oficjalny URL https://chromewebstore.google.com/detail/twitch-brightness-reducer/bigbbjepoigjhcbepeahdepmjbnjodek
Opis Controls brightness of the videoplayer in twitch.
Rozmiar pliku 4.12 KB
Liczba instalacji 15
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-03-15
Data Publikacji 2023-03-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper sougataghar47
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Brightness Reducer",
    "version": "1.0",
    "description": "Controls brightness of the videoplayer  in twitch.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "reducer.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}