nox
nox - darkmode anywhere
什么是nox?
nox是由https://jabroniverse.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“nox - darkmode anywhere”。
扩展截图
下载nox扩展crx文件
下载nox扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
nox [alpha] v0.0.2 dark mode any site at the tap of a button. alpha build v0.0.2
扩展基本信息
名称 | nox |
ID | kofnnkjglfpbpjcnkapnnlikenejhfhh |
官方URL | https://chromewebstore.google.com/detail/nox/kofnnkjglfpbpjcnkapnnlikenejhfhh |
简介 | nox - darkmode anywhere |
文件大小 | 4.54 MB |
安装次数 | 26 |
当前版本 | 0.0.2 |
更新时间 | 2023-06-12 |
上架时间 | 2023-01-23 |
开发者 | https://jabroniverse.blogspot.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "nox", "action": { "default_popup": ".\/index.html", "default_title": "nox [alpha]" }, "manifest_version": 3, "version": "0.0.2", "description": "nox - darkmode anywhere", "permissions": [ "activeTab", "storage", "scripting" ], "web_accessible_resources": [ { "resources": [ ".\/assets\/*", ".\/extras\/*", ".\/static\/*", "*.png", "favicon.ico" ], "matches": [ "*:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_idle", "js": [ ".\/extras\/js\/content.js" ] } ], "icons": { "192": ".\/logo192.png" }, "background": { "service_worker": ".\/extras\/js\/background.js", "type": "module" } } |