Night Owl - Smart Dark Mode

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

Hvad er Night Owl - Smart Dark Mode?

Night Owl - Smart Dark Mode er en Chrome-udvidelse udviklet af Music For Trees, og dens hovedfunktion er "Instantly transform websites into a comfortable, eye-friendly dark mode experience.".

Udvidelsesskærmbilleder

screenshot

Download Night Owl - Smart Dark Mode-udvidelses-CRX-fil

Download Night Owl - Smart Dark Mode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
Officiel URL https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
Beskrivelse Instantly transform websites into a comfortable, eye-friendly dark mode experience.
Filstørrelse 6.55 KB
Antal Installationer 55
Nuværende Version 1.0
Senest Opdateret 2023-04-13
Udgivelsesdato 2023-04-13
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Music For Trees
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://policies.google.com/privacy
Understøttede Sprog 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"
    }
}