Night Mode
Enjoy the web in the new night colors and protect your eyes
Was ist Night Mode?
Night Mode ist eine Chrome-Erweiterung, die von SmartLink entwickelt wurde, und ihr Hauptmerkmal ist "Enjoy the web in the new night colors and protect your eyes".
Erweiterungsscreenshots
Night Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie 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
Night Mode Version 2.0.0 - Fixed style issues after Instagram latest update. - Adopted native DarkTheme from the Instagram app. Enjoy ! This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.
Grundlegende Informationen zur Erweiterung
Name | Night Mode |
ID | bkiiljdcpccihhoigelmohcfkehdnjej |
Offizielle URL | https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej |
Beschreibung | Enjoy the web in the new night colors and protect your eyes |
Dateigröße | 42.85 KB |
Installationsanzahl | 152,483 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2022-06-07 |
Veröffentlichungsdatum | 2020-05-16 |
Bewertung | 3.84/5 Insgesamt 129 Bewertungen |
Entwickler | SmartLink |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Night Mode", "description": "Enjoy the web in the new night colors and protect your eyes", "version": "2.0.0", "author": "SmartLink", "browser_action": { "default_title": "Have a good day" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "activeTab", "storage" ], "background": { "page": "background.html", "persistent": true }, "icons": { "16": "imgs\/icon16.png", "48": "imgs\/icon48.png", "128": "imgs\/icon128.png" }, "web_accessible_resources": [ "nightmode.css" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |