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