Brightness control

This extension allows you to change brightness of any website (where it is possible).

Co to jest Brightness control?

Brightness control to rozszerzenie Chrome opracowane przez https://namata.ru, a jego główną funkcją jest „This extension allows you to change brightness of any website (where it is possible).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Brightness control

Pobierz pliki rozszerzeń Brightness control 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 simple extension allow you to change brightness of any website (where it is possible). 
Brightness control just protects your eyes from annoying bright colors.                    

Podstawowe informacje o rozszerzeniu

Nazwa Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
Oficjalny URL https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Opis This extension allows you to change brightness of any website (where it is possible).
Rozmiar pliku 251 KB
Liczba instalacji 726
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-09-28
Data Publikacji 2021-09-27
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper https://namata.ru
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://namata.ru/brightnesscontrol/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Brightness control",
    "description": "This extension allows you to change brightness of any website (where it is possible).",
    "version": "1.0",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}