Dark Theme
Dark Theme for every websites - Dark mode web. Dark theme for night readers.
什么是Dark Theme?
Dark Theme是由gitfreext开发的Chrome扩展程序,该扩展的主要功能是“Dark Theme for every websites - Dark mode web. Dark theme for night readers.”。
扩展截图
下载Dark Theme扩展crx文件
下载Dark Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Dark Theme makes easier to read at night. Dark mode for every website. Use dark theme and take care of your eyes. Click to icon of Dark Theme extension for dark reader - On Again click to icon for disable dark mode - Off Dark web for everybody. Enjoy the night!
扩展基本信息
名称 | |
ID | iofacgofnoffpinjjllfalnjcmmagpfk |
官方URL | https://chrome.google.com/webstore/detail/dark-theme/iofacgofnoffpinjjllfalnjcmmagpfk |
简介 | Dark Theme for every websites - Dark mode web. Dark theme for night readers. |
文件大小 | 268 KB |
安装次数 | 2,000 |
当前版本 | 1.0.0 |
更新时间 | 2020-09-05 |
上架时间 | 2020-09-05 |
评分 | 4.11/5 共9次评分 |
开发者 | gitfreext |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.smart-finder.net/privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dark Theme", "short_name": "Dark Theme", "description": "Dark Theme for every websites - Dark mode web. Dark theme for night readers.", "version": "1.0.0", "manifest_version": 2, "browser_action": { "default_title": "Click to switch modes", "default_icon": "icons\/night256.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "icons": { "128": "icons\/night128.png", "64": "icons\/night64.png", "48": "icons\/night48.png", "16": "icons\/night16.png" }, "options_page": "options\/index.html", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "match_about_blank": true, "css": [ "stylesheets\/dummy.css" ], "run_at": "document_start" } ] } |