Lett Web Dimmer

Adjust brightness level on any website.

O que é Lett Web Dimmer?

Lett Web Dimmer é uma extensão do Chrome desenvolvida por https://lett.app, e sua principal característica é "Adjust brightness level on any website.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Lett Web Dimmer

Baixe arquivos de extensão Lett Web Dimmer 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 extension is especially helpful for websites that don't support dark mode, it allows you to adjust the brightness level down to the level that suits you best.

The extension is fully private and works in several modes allowing you to:
   - Enable it on specific websites only.
   - Enable it on all websites and disable it on some.
   - Enable it on all websites and use custom settings on some.

If you wish to enable it on local files such as PDF files, go to:
     Extensions > Details > Allow access to file URLs                    

Informações Básicas da Extensão

Nome Lett Web Dimmer Lett Web Dimmer
ID bccgllhmbjhkaapbjfgbmeggjcpdhnbp
URL Oficial https://chromewebstore.google.com/detail/lett-web-dimmer/bccgllhmbjhkaapbjfgbmeggjcpdhnbp
Descrição Adjust brightness level on any website.
Tamanho do Arquivo 17.67 KB
Contagem de Instalações 30
Versão Atual 3.15
Última Atualização 2024-01-11
Data de Publicação 2021-05-08
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://lett.app
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://lett.app/web-dimmer
URL da Página de Política de Privacidade https://lett.app/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "95",
    "version": "3.15",
    "name": "Lett Web Dimmer",
    "description": "Adjust brightness level on any website.",
    "icons": {
        "32": "\/assets\/icon32.png",
        "128": "\/assets\/icon.png"
    },
    "offline_enabled": true,
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "\/js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "\/js\/worker.js"
    },
    "action": {
        "default_popup": "\/html\/popup.html"
    },
    "commands": {
        "increase": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Go Darker"
        },
        "decrease": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Go Lighter"
        }
    }
}