Night Owl

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

Vad är Night Owl?

Night Owl är en Chrome-tillägg utvecklad av Jishaal Kalyan, och dess huvudfunktion är "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".

Tilläggsskärmbilder

screenshot

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

Ladda ner Night Owl-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

                        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/                    

Grundläggande Information om Tillägg

Namn Night Owl Night Owl
ID iagomahcookmbnimmomjcmiaimmhompf
Officiell webbadress https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf
Beskrivning An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
Filstorlek 554 KB
Antal Installationer 203
Aktuell Version 1.1.0
Senast Uppdaterad 2022-10-16
Publiceringsdatum 2019-09-07
Utvecklare Jishaal Kalyan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jishaal/night-owl-extension
Stödda Språk 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\/*"
    ]
}