Whatsapp Privacy Protector

Whatsapp Privacy Protector

Keep your messages private and enjoy worry-free communication.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whatsapp Privacy Protector",
  "version": "2.0.0",
  "description": "Keep your messages private and enjoy worry-free communication.",
  "manifest_version": 3,
  "author": "Udara Liyanage",
  "action": {
    "default_popup": "index.html",
    "default_icon": "logo.png",
    "default_title": "Whatsapp Privacy Protector"
  },
  "icons": {
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "css": [
        "app.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self' https://udarax.me/; script-src 'self'; object-src 'self';"
  }
}