Night Owl

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

Qu'est-ce que Night Owl ?

Night Owl est une extension Chrome développée par Jishaal Kalyan, et sa fonction principale est "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Night Owl

Téléchargez les fichiers d'extension Night Owl au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Night Owl Night Owl
ID iagomahcookmbnimmomjcmiaimmhompf
URL Officiel 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.
Taille du Fichier 554 KB
Nombre d'Installations 203
Version Actuelle 1.1.0
Dernière Mise à Jour 2022-10-16
Date de Publication 2019-09-07
Développeur Jishaal Kalyan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jishaal/night-owl-extension
Langues Prises en Charge 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\/*"
    ]
}