WhatsApp Web Dark Mode

Enables Dark Mode on WhatsApp Web

什么是WhatsApp Web Dark Mode?

WhatsApp Web Dark Mode是由Saqib Ameen开发的Chrome扩展程序,该扩展的主要功能是“Enables Dark Mode on WhatsApp Web”。

扩展截图

screenshot
screenshot

下载WhatsApp Web Dark Mode扩展crx文件

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

扩展使用说明

                        While using a laptop, it's super convenient to turn on the WhatsApp Web and communicate without checking your phone again and again. For the light-sensitive people, and at night, in general, it could be annoying to use. With this extension, you can turn on the Dark Mode of WhatsApp and keep using it!

🔥 Built using on top of the dark mode designed by the WhatsApp team. This extension:

- Enables Dark Mode on WhatsApp Web
- Remember your preference
- Automatically set the mode 
- Toggle to switch b/w modes
- Completely Open Source [WIP]

📋 It only requires permission to the WhatsApp Web page to manage the colors. No extra permissions. Code is completely Open Source so you can check yourself. 

👋 Get in touch

Twitter: https://twitter.com/saqibameen
GitHub: https://github.com/saqibameen
Website: https://www.saqib.dev

Made with ❤️ for dark mode lovers.                    

扩展基本信息

名称 WhatsApp Web Dark Mode WhatsApp Web Dark Mode
ID cmjeaohnmonfbicehghplafmggicjmge
官方URL https://chrome.google.com/webstore/detail/whatsapp-web-dark-mode/cmjeaohnmonfbicehghplafmggicjmge
简介 Enables Dark Mode on WhatsApp Web
文件大小 20.84 KB
安装次数 122
当前版本 1.0.1
更新时间 2020-06-30
上架时间 2020-06-30
评分 5.00/5 共7次评分
开发者 Saqib Ameen
电子邮箱 [email protected]
付费类型 free
扩展官网 https://saqibameen.com
帮助页面URL https://saqibameen.com
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Web Dark Mode",
    "version": "1.0.1",
    "description": "Enables Dark Mode on WhatsApp Web",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "js": [
                "syncState.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "manifest_version": 2
}