Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
什么是Dark Mode View?
Dark Mode View是由http://darkview.org开发的Chrome扩展程序,该扩展的主要功能是“Allows you to enable all websites to be dark mode to ease eye strain. ”。
扩展截图
下载Dark Mode View扩展crx文件
下载Dark Mode View扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.
扩展基本信息
名称 | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
官方URL | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
简介 | Allows you to enable all websites to be dark mode to ease eye strain. |
文件大小 | 20.61 KB |
安装次数 | 5,870 |
当前版本 | 1.0 |
更新时间 | 2021-03-30 |
上架时间 | 2021-03-30 |
评分 | 4.50/5 共2次评分 |
开发者 | http://darkview.org |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://darkview.org/ |
帮助页面URL | https://darkview.org/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Greg Henderson", "homepage_url": "https:\/\/darkview.org", "name": "Dark Mode View", "description": "Allows you to enable all websites to be dark mode to ease eye strain. ", "icons": { "128": "icon-128.png" }, "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "autotoggle.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon-128.png", "default_title": "Dark Mode Viewer", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ] } |