WhatsApp Web Dark Mode

A simple extention to turn on dark mode of WhatsApp Web

什么是WhatsApp Web Dark Mode?

WhatsApp Web Dark Mode是由Sashen Pasindu开发的Chrome扩展程序,该扩展的主要功能是“A simple extention to turn on dark mode of WhatsApp Web”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载WhatsApp Web Dark Mode扩展crx文件

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

扩展使用说明

                        A simple chrome extension to turn on the dark theme of WhatsApp Web                    

扩展基本信息

名称 WhatsApp Web Dark Mode WhatsApp Web Dark Mode
ID pbmjjliggohmnkgdfpggpiicnccnlhmm
官方URL https://chrome.google.com/webstore/detail/whatsapp-web-dark-mode/pbmjjliggohmnkgdfpggpiicnccnlhmm
简介 A simple extention to turn on dark mode of WhatsApp Web
文件大小 43.16 KB
安装次数 354
当前版本 0.1
更新时间 2020-05-20
上架时间 2020-05-20
评分 5.00/5 共1次评分
开发者 Sashen Pasindu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://sashen.me
帮助页面URL https://twitter.com/sashenme
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Web Dark Mode",
    "version": "0.1",
    "manifest_version": 2,
    "description": "A simple extention to turn on dark mode of WhatsApp Web",
    "author": "Sashen Pasindu",
    "homepage_url": "https:\/\/sashen.me",
    "background": {
        "scripts": [
            "modernizr.min.js",
            "js\/jquery-3.4.1.min.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js",
                "js\/jquery-3.4.1.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "128": "images\/icon_128.png"
    }
}