Daydream Night Mode
Get rid of the sun-like screen and have a sweet Daydream...
什么是Daydream Night Mode?
Daydream Night Mode是由zankyostudio开发的Chrome扩展程序,该扩展的主要功能是“Get rid of the sun-like screen and have a sweet Daydream...”。
扩展截图
下载Daydream Night Mode扩展crx文件
下载Daydream Night Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Get rid of the sun-like screen and take your sweet dream. Provide dark mode access to all websites with customizable contrast. You can also exclude any website from the extension if the website already provides dark mode.
扩展基本信息
名称 | Daydream Night Mode |
ID | kbbmooglpoifkklpckgabiahlicnhnmo |
官方URL | https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo |
简介 | Get rid of the sun-like screen and have a sweet Daydream... |
文件大小 | 10.58 KB |
安装次数 | 1,004 |
当前版本 | 0.1.6 |
更新时间 | 2020-11-20 |
上架时间 | 2019-06-01 |
评分 | 4.18/5 共11次评分 |
开发者 | zankyostudio |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Daydream Night Mode", "version": "0.1.6", "description": "Get rid of the sun-like screen and have a sweet Daydream...", "permissions": [ "activeTab", "tabs", "https:\/\/*\/*", "http:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*" ], "css": [ "content.css" ], "run_at": "document_start" } ], "browser_action": { "default_popup": "popup.html" }, "icons": { "128": "DaydreamIcon.png" } } |