night light
Inverted display mode for less eye strain in dark or dim lighting
¿Qué es night light?
night light es una extensión de Chrome desarrollada por Tyler Milford, y su función principal es "Inverted display mode for less eye strain in dark or dim lighting".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión night light
Descarga archivos de extensión night light 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
Inverted display mode for better viewing with less eye strain in dark or dim lighting. The result is light text on a dark background instead of dark text on a light background, resulting in significantly less light output and less eye strain. Images are dimmed instead of inverted so they should still render nicely on most pages. Easily toggled on or off from the toolbar or main menu. Any sites that don't look good in night mode can easily be added to the whitelist.
Información Básica de la Extensión
Nombre | |
ID | aionebabdognkieabomemdegmjedkked |
URL Oficial | https://chrome.google.com/webstore/detail/night-light/aionebabdognkieabomemdegmjedkked |
Descripción | Inverted display mode for less eye strain in dark or dim lighting |
Tamaño del Archivo | 56.63 KB |
Cantidad de Instalaciones | 2,300 |
Versión Actual | 1.14 |
Última Actualización | 2018-12-04 |
Fecha de Publicación | 2018-12-04 |
Calificación | 3.67/5 Total de 9 Calificaciones |
Desarrollador | Tyler Milford |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/conceptualspace/nightlight |
URL de la Página de Ayuda | https://github.com/conceptualspace/nightlight |
URL de la Página de Política de Privacidad | https://conceptualspace.net/privacy.md |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "night light", "description": "Inverted display mode for less eye strain in dark or dim lighting", "version": "1.14", "author": "[email protected]", "applications": { "gecko": { "id": "{d8a39bf7-9f46-45b7-9d77-7754cd13c0f8}" } }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "underscore-min.js", "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_title": "Toggle night mode" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script_start.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script_idle.js" ], "all_frames": true, "run_at": "document_idle" } ], "permissions": [ "storage", "contextMenus", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |