Whatsapp Web Dark Mode

Extension to enable WhatsApp Web in dark mode.

What is Whatsapp Web Dark Mode?

Whatsapp Web Dark Mode is a Chrome extension developed by http://rafaellaurindo.dev, and its main feature is "Extension to enable WhatsApp Web in dark mode.".

Extension Screenshots

screenshot

Download Whatsapp Web Dark Mode Extension CRX File

Download Whatsapp Web Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Now you can use your Whatsapp Web in Dark mode.

With this simple extension you can activate or deactivate the dark mode when using Whatsapp Web, in a totally secure way.

Try it now.                    

Extension Basic Information

Name Whatsapp Web Dark Mode Whatsapp Web Dark Mode
ID mjnpmbkeafdainabfaiejcgjoalgmlhl
Official URL https://chrome.google.com/webstore/detail/whatsapp-web-dark-mode/mjnpmbkeafdainabfaiejcgjoalgmlhl
Description Extension to enable WhatsApp Web in dark mode.
File Size 182 KB
Installation Count 2,000
Current Version 0.0.1
Last Updated 2020-05-20
Publish Date 2020-05-19
Rating 4.20/5 Total 10 Ratings
Developer http://rafaellaurindo.dev
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.1",
    "name": "Whatsapp Web Dark Mode",
    "description": "Extension to enable WhatsApp Web in dark mode.",
    "author": {
        "name": "Rafael Laurindo",
        "email": "[email protected]"
    },
    "icons": {
        "72": "images\/icons\/icon-72x72.png",
        "96": "images\/icons\/icon-96x96.png",
        "128": "images\/icons\/icon-128x128.png",
        "144": "images\/icons\/icon-144x144.png",
        "152": "images\/icons\/icon-152x152.png",
        "384": "images\/icons\/icon-384x384.png",
        "512": "images\/icons\/icon-512x512.png"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "images\/icons\/icon-512x512.png",
        "default_title": "Whatsapp Web Dark Mode",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/web.whatsapp.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}