Night Owl - Smart Dark Mode

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

Vad är Night Owl - Smart Dark Mode?

Night Owl - Smart Dark Mode är en Chrome-tillägg utvecklad av Music For Trees, och dess huvudfunktion är "Instantly transform websites into a comfortable, eye-friendly dark mode experience.".

Tilläggsskärmbilder

screenshot

Ladda ner Night Owl - Smart Dark Mode-förlängningens CRX-fil

Ladda ner Night Owl - Smart Dark Mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
Officiell webbadress https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
Beskrivning Instantly transform websites into a comfortable, eye-friendly dark mode experience.
Filstorlek 6.55 KB
Antal Installationer 55
Aktuell Version 1.0
Senast Uppdaterad 2023-04-13
Publiceringsdatum 2023-04-13
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Music For Trees
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://policies.google.com/privacy
Stödda Språk 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"
    }
}