Night Owl
An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
Τι είναι το Night Owl;
Το Night Owl είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jishaal Kalyan, και η κύρια λειτουργία του είναι "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Night Owl
Λήψη αρχείων επέκτασης Night Owl σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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/
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | iagomahcookmbnimmomjcmiaimmhompf |
Επίσημο URL | https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf |
Περιγραφή | An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. |
Μέγεθος Αρχείου | 554 KB |
Αριθμός Εγκαταστάσεων | 203 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2022-10-16 |
Ημερομηνία Δημοσίευσης | 2019-09-07 |
Προγραμματιστής | Jishaal Kalyan |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jishaal/night-owl-extension |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } |