Brightness control

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

Co je Brightness control?

Brightness control je rozšíření Chrome vyvinuté https://namata.ru, a jeho hlavní funkcí je „This extension allows you to change brightness of any website (where it is possible).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Brightness control

Stáhněte si soubory rozšíření Brightness control ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
Oficiální URL https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Popis This extension allows you to change brightness of any website (where it is possible).
Velikost souboru 251 KB
Počet instalací 726
Aktuální Verze 1.0
Poslední Aktualizace 2021-09-28
Datum Vydání 2021-09-27
Hodnocení 3.00/5 Celkem 1 Hodnocení
Vývojář https://namata.ru
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://namata.ru/brightnesscontrol/
Podporované Jazyky 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"
    ]
}