Simple Night Mode
An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.
Was ist Simple Night Mode?
Simple Night Mode ist eine Chrome-Erweiterung, die von Aniket entwickelt wurde, und ihr Hauptmerkmal ist "An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.".
Erweiterungsscreenshots
Simple Night Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Simple Night Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Simple Night Mode |
ID | daogheeomfnjjbabmnmgpbhmamegpbaj |
Offizielle URL | https://chromewebstore.google.com/detail/simple-night-mode/daogheeomfnjjbabmnmgpbhmamegpbaj |
Beschreibung | An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes. |
Dateigröße | 7.84 KB |
Installationsanzahl | 1,967 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2016-12-06 |
Veröffentlichungsdatum | 2016-12-06 |
Bewertung | 4.15/5 Insgesamt 40 Bewertungen |
Entwickler | Aniket |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |