Night Owl - Smart Dark Mode

Instantly transform websites into a comfortable, eye-friendly dark mode experience.

Co to jest Night Owl - Smart Dark Mode?

Night Owl - Smart Dark Mode to rozszerzenie Chrome opracowane przez Music For Trees, a jego główną funkcją jest „Instantly transform websites into a comfortable, eye-friendly dark mode experience.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Night Owl - Smart Dark Mode

Pobierz pliki rozszerzeń Night Owl - Smart Dark Mode 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

                        Dark mode for any website!

Many websites don't have a dark mode option, so we made Night Owl. Click the owl icon to turn on dark mode for any site, and the extension will remember your preferences. Enjoy a comfortable browsing experience with your favorite sites in dark mode!                    

Podstawowe informacje o rozszerzeniu

Nazwa Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
Oficjalny URL https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
Opis Instantly transform websites into a comfortable, eye-friendly dark mode experience.
Rozmiar pliku 6.55 KB
Liczba instalacji 55
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-04-13
Data Publikacji 2023-04-13
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Music For Trees
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://policies.google.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Owl - Smart Dark Mode",
    "version": "1.0",
    "description": "Instantly transform websites into a comfortable, eye-friendly dark mode experience.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}