关灯

Webpage Theme changer

What is 关灯?

关灯 is a Chrome extension developed by slc3a2, and its main feature is "Webpage Theme changer".

Extension Screenshots

screenshot

Download 关灯 Extension CRX File

Download 关灯 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        网页暗黑模式一键切换
          
❇️ 他足够小,核心代码实现只有 3KB
❇️ 轻量化,他没有任何依赖,仅使用原生 CSS 实现
❇️ 安全,仅获取读取 TAB 页面信息权限,用于注入样式。其他的不会获取任何权限和信息
❇️ 这是一个开源项目,永久免费,随时可以查看最新的源代码
❇️ 制作的初衷是我有干眼症还经常晚上浏览页面,自己需要这样的一个工具,后来发布到 chrome 商店。所以我会及时修复问题(工作不忙的话😃)                    

Extension Basic Information

Name 关灯 关灯
ID dnidbhhpcjgffjophhebfelbcnonoclh
Official URL https://chromewebstore.google.com/detail/%E5%85%B3%E7%81%AF/dnidbhhpcjgffjophhebfelbcnonoclh
Description Webpage Theme changer
File Size 690 KB
Installation Count 651
Current Version 1.0.5
Last Updated 2023-02-20
Publish Date 2020-12-04
Rating 3.75/5 Total 8 Ratings
Developer slc3a2
Email [email protected]
Payment Type free
Extension Website https://github.com/slc3a2/dimmer
Help Page URL https://github.com/slc3a2/dimmer
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u5173\u706f",
    "manifest_version": 2,
    "version": "1.0.5",
    "author": "[email protected]",
    "description": "Webpage Theme changer",
    "icons": {
        "16": "imgs\/logo16.png",
        "128": "imgs\/logo128.png"
    },
    "browser_action": {
        "default_title": "\u5173\u706f",
        "default_popup": ".\/popup\/index.html"
    },
    "background": {
        "page": "background\/index.html"
    },
    "content_scripts": [
        {
            "js": [
                "\/inject\/index.js"
            ],
            "css": [
                "\/inject\/index.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [],
    "web_accessible_resources": [
        "assets\/logo.png",
        "assets\/logo-transparent.png"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}