Lett Web Dimmer

Adjust brightness level on any website.

Co to jest Lett Web Dimmer?

Lett Web Dimmer to rozszerzenie Chrome opracowane przez https://lett.app, a jego główną funkcją jest „Adjust brightness level on any website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Lett Web Dimmer

Pobierz pliki rozszerzeń Lett Web Dimmer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Lett Web Dimmer Lett Web Dimmer
ID bccgllhmbjhkaapbjfgbmeggjcpdhnbp
Oficjalny URL https://chromewebstore.google.com/detail/lett-web-dimmer/bccgllhmbjhkaapbjfgbmeggjcpdhnbp
Opis Adjust brightness level on any website.
Rozmiar pliku 17.67 KB
Liczba instalacji 30
Aktualna Wersja 3.15
Ostatnia Aktualizacja 2024-01-11
Data Publikacji 2021-05-08
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://lett.app
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://lett.app/web-dimmer
Adres URL Strony Polityki Prywatności https://lett.app/privacy
Obsługiwane Języki 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"
        }
    }
}