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
公式URL 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
Eメール [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"
    ]
}