Night Mode
Enjoy the web in the new night colors and protect your eyes
什么是Night Mode?
Night Mode是由SmartLink开发的Chrome扩展程序,该扩展的主要功能是“Enjoy the web in the new night colors and protect your eyes”。
扩展截图
下载Night Mode扩展crx文件
下载Night Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Night Mode |
ID | bkiiljdcpccihhoigelmohcfkehdnjej |
官方URL | https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej |
简介 | Enjoy the web in the new night colors and protect your eyes |
文件大小 | 42.85 KB |
安装次数 | 152,483 |
当前版本 | 2.0.0 |
更新时间 | 2022-06-07 |
上架时间 | 2020-05-16 |
评分 | 3.84/5 共129次评分 |
开发者 | SmartLink |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } ] } |