Night Mode
Enjoy the web in the new night colors and protect your eyes
What is Night Mode?
Night Mode is a Chrome extension developed by SmartLink, and its main feature is "Enjoy the web in the new night colors and protect your eyes".
Extension Screenshots
Download Night Mode Extension CRX File
Download Night Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Night Mode |
ID | bkiiljdcpccihhoigelmohcfkehdnjej |
Official URL | https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej |
Description | Enjoy the web in the new night colors and protect your eyes |
File Size | 42.85 KB |
Installation Count | 152,483 |
Current Version | 2.0.0 |
Last Updated | 2022-06-07 |
Publish Date | 2020-05-16 |
Rating | 3.84/5 Total 129 Ratings |
Developer | SmartLink |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |