WhatsApp Privacy Shield

WhatsApp Privacy Shield

WhatsApp Privacy Shield steps in as your digital guardian, allowing you to blur your chats and profile information seamlessly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.5",
  "name": "WhatsApp Privacy Shield",
  "icons": {
    "16": "images/16.png",
    "48": "images/16.png",
    "128": "images/16.png"
  },
  "description": "WhatsApp Privacy Shield steps in as your digital guardian, allowing you to blur your chats and profile information seamlessly.",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "./popup/popup.html",
    "js": [
      "./popup/popup.js"
    ],
    "default_title": "WhatsApp Privacy Shield"
  },
  "content_scripts": [
    {
      "js": [
        "./content/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ]
}