Lett Web Dimmer

Adjust brightness level on any website.

Cos'è Lett Web Dimmer?

Lett Web Dimmer è un'estensione di Chrome sviluppata da https://lett.app, e la sua funzione principale è "Adjust brightness level on any website.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Lett Web Dimmer

Scarica i file di estensione Lett Web Dimmer 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 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                    

Informazioni di Base sull'Estensione

Nome Lett Web Dimmer Lett Web Dimmer
ID bccgllhmbjhkaapbjfgbmeggjcpdhnbp
URL Ufficiale https://chromewebstore.google.com/detail/lett-web-dimmer/bccgllhmbjhkaapbjfgbmeggjcpdhnbp
Descrizione Adjust brightness level on any website.
Dimensione del File 17.67 KB
Conteggio Installazioni 30
Versione Corrente 3.15
Ultimo Aggiornamento 2024-01-11
Data di Pubblicazione 2021-05-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://lett.app
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://lett.app/web-dimmer
URL della Pagina della Politica sulla Privacy https://lett.app/privacy
Lingue Supportate 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"
        }
    }
}