Lett Web Dimmer

Adjust brightness level on any website.

Co je Lett Web Dimmer?

Lett Web Dimmer je rozšíření Chrome vyvinuté https://lett.app, a jeho hlavní funkcí je „Adjust brightness level on any website.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Lett Web Dimmer

Stáhněte si soubory rozšíření Lett Web Dimmer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Lett Web Dimmer Lett Web Dimmer
ID bccgllhmbjhkaapbjfgbmeggjcpdhnbp
Oficiální URL https://chromewebstore.google.com/detail/lett-web-dimmer/bccgllhmbjhkaapbjfgbmeggjcpdhnbp
Popis Adjust brightness level on any website.
Velikost souboru 17.67 KB
Počet instalací 30
Aktuální Verze 3.15
Poslední Aktualizace 2024-01-11
Datum Vydání 2021-05-08
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://lett.app
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://lett.app/web-dimmer
URL Stránky Zásad Ochrany Soukromí https://lett.app/privacy
Podporované Jazyky 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"
        }
    }
}