Dark Mode for Chrome

Enjoy dark mode on browsing any webpage in Single Tap

什么是Dark Mode for Chrome?

Dark Mode for Chrome是由alanranjith975开发的Chrome扩展程序,该扩展的主要功能是“Enjoy dark mode on browsing any webpage in Single Tap”。

扩展截图

screenshot
screenshot

下载Dark Mode for Chrome扩展crx文件

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

扩展使用说明

                        Now enjoy Dark Mode on all the websites using this Extension. Simple one click turn ON/OFF. 
Features:
# Simple to use.
# Light Weight
# Turn ON/OFF in a single step.

This extension works on all the websites opened in the browser. 

Note: Refresh the page if dark mode is not applied to the page when turned ON.                    

扩展基本信息

名称 Dark Mode for Chrome Dark Mode for Chrome
ID ebhhobcbkmgpdjodlhhmpapncjklilbk
官方URL https://chromewebstore.google.com/detail/dark-mode-for-chrome/ebhhobcbkmgpdjodlhhmpapncjklilbk
简介 Enjoy dark mode on browsing any webpage in Single Tap
文件大小 263 KB
安装次数 388
当前版本 0.2
更新时间 2022-07-19
上架时间 2022-03-05
评分 5.00/5 共1次评分
开发者 alanranjith975
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://alanranjith.github.io/hpp-privacy-policy
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark Mode for Chrome",
    "version": "0.2",
    "description": "Enjoy dark mode on browsing any webpage in Single Tap",
    "permissions": [
        "storage",
        "tabs",
        "background"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "day128.png"
    },
    "action": {
        "default_icon": "day128.png",
        "default_title": "Dark Mode for Chrome",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/darkModeScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}