Dark Mode Global
Invert light-themed web pages into dark to reduce eyestrain
¿Qué es Dark Mode Global?
Dark Mode Global es una extensión de Chrome desarrollada por joue.quroi, y su función principal es "Invert light-themed web pages into dark to reduce eyestrain".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Dark Mode Global
Descarga archivos de extensión Dark Mode Global 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
This extension blackens white-themed webpages automatically using CSS rules. The idea is to reduce eyestrain while reading documents hence the toolbar button is like a switch to turn dark theme on and off. The user can add one or several pages to the blacklist to prevent automatic conversion when the extension is enabled. This extension supports custom styling for the dark mode to fix possible glitches while automatically converting a page. In comparison to the other dark mode extensions, this one has a built-in method to apply the dark theme only to web pages that use a light background color. So if for instance, you visit a web page that has a default black theme, then the extension will not apply the dark theme at all!
Información Básica de la Extensión
Nombre | Dark Mode Global |
ID | ngfbfmhhkpknjodmiklpkipnlmolabee |
URL Oficial | https://chromewebstore.google.com/detail/dark-mode-global/ngfbfmhhkpknjodmiklpkipnlmolabee |
Descripción | Invert light-themed web pages into dark to reduce eyestrain |
Tamaño del Archivo | 27.19 KB |
Cantidad de Instalaciones | 1,089 |
Versión Actual | 0.1.0 |
Última Actualización | 2018-02-07 |
Fecha de Publicación | 2018-02-07 |
Calificación | 4.20/5 Total de 15 Calificaciones |
Desarrollador | joue.quroi |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://add0n.com/dark-mode-global.html |
URL de la Página de Ayuda | http://add0n.com/dark-mode-global.html |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.0", "name": "Dark Mode Global", "description": "Invert light-themed web pages into dark to reduce eyestrain", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png" }, "permissions": [ "*:\/\/*\/*", "webNavigation", "storage", "contextMenus", "notifications" ], "homepage_url": "http:\/\/add0n.com\/dark-mode-global.html", "browser_action": { "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png" } }, "background": { "scripts": [ "webext.js", "background.js" ] }, "options_ui": { "page": "data\/options\/index.html", "chrome_style": true } } |