Night Owl

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

What is Night Owl?

Night Owl is a Chrome extension developed by Jishaal Kalyan, and its main feature is "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".

Extension Screenshots

screenshot

Download Night Owl Extension CRX File

Download Night Owl extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Night Owl Night Owl
ID iagomahcookmbnimmomjcmiaimmhompf
Official URL https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf
Description An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
File Size 554 KB
Installation Count 203
Current Version 1.1.0
Last Updated 2022-10-16
Publish Date 2019-09-07
Developer Jishaal Kalyan
Email [email protected]
Payment Type free
Extension Website https://github.com/jishaal/night-owl-extension
Supported Languages 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\/*"
    ]
}