Night Owl
An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.
Cos'è Night Owl?
Night Owl è un'estensione di Chrome sviluppata da Jishaal Kalyan, e la sua funzione principale è "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Night Owl
Scarica i file di estensione Night Owl in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/
Informazioni di Base sull'Estensione
Nome | |
ID | iagomahcookmbnimmomjcmiaimmhompf |
URL Ufficiale | https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf |
Descrizione | An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. |
Dimensione del File | 554 KB |
Conteggio Installazioni | 203 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2022-10-16 |
Data di Pubblicazione | 2019-09-07 |
Sviluppatore | Jishaal Kalyan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jishaal/night-owl-extension |
Lingue Supportate | 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\/*" ] } |