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