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é es Night Owl?
Night Owl es una extensión de Chrome desarrollada por Jishaal Kalyan, y su función principal es "An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Night Owl
Descarga archivos de extensión Night Owl en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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/
Información Básica de la Extensión
Nombre | |
ID | iagomahcookmbnimmomjcmiaimmhompf |
URL Oficial | https://chromewebstore.google.com/detail/night-owl/iagomahcookmbnimmomjcmiaimmhompf |
Descripción | An extension to save your eyes! Automatically make your favourite website's night mode turn on and off at sunset and sunrise. |
Tamaño del Archivo | 554 KB |
Cantidad de Instalaciones | 203 |
Versión Actual | 1.1.0 |
Última Actualización | 2022-10-16 |
Fecha de Publicación | 2019-09-07 |
Desarrollador | Jishaal Kalyan |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/jishaal/night-owl-extension |
Idiomas Soportados | 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\/*" ] } |