Simple Night Mode
An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.
¿Qué es Simple Night Mode?
Simple Night Mode es una extensión de Chrome desarrollada por Aniket, y su función principal es "An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Simple Night Mode
Descarga archivos de extensión Simple Night Mode 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
Invert the color of any webpage/website, making contents of any website readable and less stressful on your eyes if you are surfing internet in dark lit room. Click the Simple Night Mode Button to start Night Mode.
Información Básica de la Extensión
Nombre | Simple Night Mode |
ID | daogheeomfnjjbabmnmgpbhmamegpbaj |
URL Oficial | https://chromewebstore.google.com/detail/simple-night-mode/daogheeomfnjjbabmnmgpbhmamegpbaj |
Descripción | An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes. |
Tamaño del Archivo | 7.84 KB |
Cantidad de Instalaciones | 1,967 |
Versión Actual | 1.0.2 |
Última Actualización | 2016-12-06 |
Fecha de Publicación | 2016-12-06 |
Calificación | 4.15/5 Total de 40 Calificaciones |
Desarrollador | Aniket |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Night Mode", "version": "1.0.2", "description": "An addon to invert the color of any webpage\/website, making contents of any website less stressful on your eyes.", "background": { "scripts": [ "libs\/control.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "libs\/system.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon24.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon24.png", "38": "images\/icon48.png" }, "default_title": "Simple Night Mode" }, "permissions": [ "tabs", "*:\/\/*\/*" ], "manifest_version": 2, "web_accessible_resources": [ "themes\/simple.css", "libs\/system.js" ] } |