WhatsDark

A chrome extension to activate dark mode on whatsapp web

什麼是WhatsDark?

WhatsDark是由https://nelsonatuonwu.me開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension to activate dark mode on whatsapp web”。

擴展截圖

screenshot
screenshot
screenshot

下載WhatsDark擴展crx文件

下載WhatsDark擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Do you, like every other sane person on the planet, have vampire tendencies, hate staring at horrible white bright screens when consuming content? or even worse, when communicating?

WhatsApp was thoughtful enough to release dark mode updates for their apps on the Android & iOS platforms but for some reason there isn't any for web (yet). This is where Whatsapp Web Dark Mode comes in. Following the already defined dark mode color scheme on the android version, it brings the darkness to your webscreens so you don't have to wait for Whatsapp to.

--KNOWN ISSUES--
- The emojis on whatsapp are images and not unicode characters (e.g 😅), I'd bet for emoji style consistency across platforms. These images have white backgrounds and that's on Whatsapp.
- A couple of other images have white backgrounds across the entire application too, in the event you come across this images, they are not of my doing.

--RELEASES--
- v0.1 - Initial Release                    

擴展基本資訊

名稱 WhatsDark WhatsDark
ID nnkdhlgmdomabofndlmknngpaibaekbl
官方網址 https://chromewebstore.google.com/detail/whatsdark/nnkdhlgmdomabofndlmknngpaibaekbl
簡介 A chrome extension to activate dark mode on whatsapp web
檔案大小 347 KB
安裝次數 25
目前版本 0.1
更新時間 2020-04-30
上架時間 2020-04-30
開發者 https://nelsonatuonwu.me
電子郵箱 [email protected]
付費類型 free
擴展官網 https://nelsonatuonwu.me
說明頁面URL https://nelsonatuonwu.me/#/contact
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsDark",
    "version": "0.1",
    "description": "A chrome extension to activate dark mode on whatsapp web",
    "manifest_version": 2,
    "icons": {
        "128": "icons\/128.png",
        "64": "icons\/64.png",
        "32": "icons\/32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "css": [
                "web.css"
            ],
            "js": [
                "web.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "app.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "bg.png"
    ]
}