Brightness control

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

O que é Brightness control?

Brightness control é uma extensão do Chrome desenvolvida por https://namata.ru, e sua principal característica é "This extension allows you to change brightness of any website (where it is possible).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Brightness control

Baixe arquivos de extensão Brightness control no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
URL Oficial https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Descrição This extension allows you to change brightness of any website (where it is possible).
Tamanho do Arquivo 251 KB
Contagem de Instalações 726
Versão Atual 1.0
Última Atualização 2021-09-28
Data de Publicação 2021-09-27
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor https://namata.ru
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://namata.ru/brightnesscontrol/
Idiomas Suportados 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"
    ]
}