WhatsApp Web Dark Mode

WhatsApp Web Dark Mode

Enables WhatsApp Web app dark theme feature.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WhatsApp Web Dark Mode",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Enables WhatsApp Web app dark theme feature.",
  "browser_action": {
    "default_icon": "dark.png"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/"
      ],
      "js": [
        "app.js"
      ]
    }
  ]
}