Brightness control

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

Cos'è Brightness control?

Brightness control è un'estensione di Chrome sviluppata da https://namata.ru, e la sua funzione principale è "This extension allows you to change brightness of any website (where it is possible).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Brightness control

Scarica i file di estensione Brightness control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
URL Ufficiale https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Descrizione This extension allows you to change brightness of any website (where it is possible).
Dimensione del File 251 KB
Conteggio Installazioni 726
Versione Corrente 1.0
Ultimo Aggiornamento 2021-09-28
Data di Pubblicazione 2021-09-27
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore https://namata.ru
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://namata.ru/brightnesscontrol/
Lingue Supportate 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"
    ]
}