Night Owl

An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.

Co je Night Owl?

Night Owl je rozšíření Chrome vyvinuté Jishaal Kalyan, a jeho hlavní funkcí je „An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Night Owl

Stáhněte si soubory rozšíření Night Owl 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í

                        Save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.

Is it a dark and rainy day? You can turn off the automatic scheduler in the Settings to enable night mode manually again. 

The following sites are currently supported
- twitter.com
- reddit.com


***Coming Soon***
- Automatic toggling night mode when the user is idle
- More sites that support night mode

=======
Owl logo from https://www.emojione.com/                    

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

Název Night Owl Night Owl
ID iagomahcookmbnimmomjcmiaimmhompf
Oficiální URL https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf
Popis An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
Velikost souboru 554 KB
Počet instalací 203
Aktuální Verze 1.1.0
Poslední Aktualizace 2022-10-16
Datum Vydání 2019-09-07
Vývojář Jishaal Kalyan
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jishaal/night-owl-extension
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Night Owl",
    "name": "Night Owl",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Night Owl"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon_128x128.png",
        "64": "icon_64x64.png",
        "32": "icon_32x32.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "cookies",
        "geolocation",
        "storage",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.reddit.com\/*"
    ]
}