Brightness control

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

Vad är Brightness control?

Brightness control är en Chrome-tillägg utvecklad av https://namata.ru, och dess huvudfunktion är "This extension allows you to change brightness of any website (where it is possible).".

Tilläggsskärmbilder

screenshot

Ladda ner Brightness control-förlängningens CRX-fil

Ladda ner Brightness control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
Officiell webbadress https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Beskrivning This extension allows you to change brightness of any website (where it is possible).
Filstorlek 251 KB
Antal Installationer 726
Aktuell Version 1.0
Senast Uppdaterad 2021-09-28
Publiceringsdatum 2021-09-27
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare https://namata.ru
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://namata.ru/brightnesscontrol/
Stödda Språk 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"
    ]
}