Blur Images

Blur Images

Blur images from chats

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Blur Images",
  "short_name": "Blur Images",
  "description": "Blur images from chats",
  "version": "5.4",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Blur Images"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "main.css"
      ],
      "js": [
        "main.js"
      ],
      "matches": [
        "http://web.whatsapp.com/",
        "https://web.whatsapp.com/"
      ]
    }
  ],
  "permissions": [
    "https://web.whatsapp.com/"
  ]
}