feel dark

feel dark is a simple dark mode for web pages

什么是feel dark?

feel dark是由michaeldatkins2x5s开发的Chrome扩展程序,该扩展的主要功能是“feel dark is a simple dark mode for web pages”。

扩展截图

screenshot

下载feel dark扩展crx文件

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

扩展使用说明

                        make web page look dark using feel dark mode
1)open web page example:  lipsum.com
2)click on extension icon to turn on dark mode                    

扩展基本信息

名称 feel dark feel dark
ID gbihkmhglihpmafmgbihhehhonmklcmc
官方URL https://chrome.google.com/webstore/detail/feel-dark/gbihkmhglihpmafmgbihhehhonmklcmc
简介 feel dark is a simple dark mode for web pages
文件大小 40.22 KB
安装次数 935
当前版本 0.1
更新时间 2022-03-09
上架时间 2022-03-09
开发者 michaeldatkins2x5s
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "feel dark",
    "version": "0.1",
    "manifest_version": 3,
    "description": "feel dark is a  simple dark mode for web pages",
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}