Brightness control

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

Hvad er Brightness control?

Brightness control er en Chrome-udvidelse udviklet af https://namata.ru, og dens hovedfunktion er "This extension allows you to change brightness of any website (where it is possible).".

Udvidelsesskærmbilleder

screenshot

Download Brightness control-udvidelses-CRX-fil

Download Brightness control-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
Officiel URL https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Beskrivelse This extension allows you to change brightness of any website (where it is possible).
Filstørrelse 251 KB
Antal Installationer 726
Nuværende Version 1.0
Senest Opdateret 2021-09-28
Udgivelsesdato 2021-09-27
Bedømmelse 3.00/5 Samlet 1 Bedømmelser
Udvikler https://namata.ru
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://namata.ru/brightnesscontrol/
Understøttede Sprog 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"
    ]
}