WhatsApp Dark Theme

Change your WhatsApp web app to dark theme.

什么是WhatsApp Dark Theme?

WhatsApp Dark Theme是由Homecode开发的Chrome扩展程序,该扩展的主要功能是“Change your WhatsApp web app to dark theme.”。

扩展截图

screenshot

下载WhatsApp Dark Theme扩展crx文件

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

扩展使用说明

                        This is a simple Google Chrome Extension to change the WhatsApp web app to the dark theme

If you don't know, WhatsApp has already a css class to change the theme to dark but, it's disabled by default.  

This code just add the class "dark" to body tag of DOM on WhatsApp web page.

You can check out the extension here: https://bit.ly/WhatsAppDarkThemeCode                    

扩展基本信息

名称 WhatsApp Dark Theme WhatsApp Dark Theme
ID kccelbjhigfmkeipogopnnfjjomlcdcg
官方URL https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg
简介 Change your WhatsApp web app to dark theme.
文件大小 13.59 KB
安装次数 14
当前版本 1.0.1
更新时间 2020-06-23
上架时间 2020-06-23
评分 5.00/5 共4次评分
开发者 Homecode
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://homecode.com.br
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Dark Theme",
    "version": "1.0.1",
    "description": "Change your WhatsApp web app to dark theme.",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon-128.png",
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/icon-128.png",
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png"
        }
    },
    "manifest_version": 2
}