Dark Mode for Chrome

Click the icon to enable Dark Mode For Chrome. Dark theme with a single move.

什么是Dark Mode for Chrome?

Dark Mode for Chrome是由whiskytinkey开发的Chrome扩展程序,该扩展的主要功能是“Click the icon to enable Dark Mode For Chrome. Dark theme with a single move.”。

扩展截图

screenshot
screenshot

下载Dark Mode for Chrome扩展crx文件

下载Dark Mode for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        "Dark Mode for Chrome" is a browser extension (plugin) for Google Chrome, which is designed to change the color scheme of your browser and web pages to dark mode. This plug-in can be especially useful at night or in low light conditions, when the bright white background of web pages and browser interfaces can be annoying or uncomfortable for the eyes.                    

扩展基本信息

名称 Dark Mode for Chrome Dark Mode for Chrome
ID ebicpcgpphapkikpnijepngcchnpmbao
官方URL https://chromewebstore.google.com/detail/dark-mode-for-chrome/ebicpcgpphapkikpnijepngcchnpmbao
简介 Click the icon to enable Dark Mode For Chrome. Dark theme with a single move.
文件大小 257 KB
安装次数 247
当前版本 0.1.2
更新时间 2023-10-11
上架时间 2023-09-10
评分 5.00/5 共2次评分
开发者 whiskytinkey
电子邮箱 [email protected]
付费类型 free
支持的语言 id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "manifest_version": 3,
    "version": "0.1.2",
    "default_locale": "en",
    "description": "__MSG_extShortDesc__",
    "offline_enabled": true,
    "host_permissions": [
        ""
    ],
    "optional_permissions": [
        "alarms"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_title": "Dark Mode",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    },
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "data\/content_script\/custom\/*",
                "data\/content_script\/general\/*",
                "data\/content_script\/page_context\/mainContentScript.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "css": [
                "data\/content_script\/mainContentScript.css"
            ],
            "js": [
                "data\/rules\/rules.js",
                "data\/content_script\/mainContentScript.js",
                "data\/content_script\/vendor\/tinycolor.js",
                "data\/content_script\/resources\/native.js"
            ]
        }
    ]
}