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
官方網址 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"
            ]
        }
    ]
}