WebChats Incognito mode

WebChats Incognito mode

Blur out your private conversations on multiple web chat clients

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebChats Incognito mode",
  "short_name": "WebChats Incognito",
  "version": "1.0.8",
  "manifest_version": 2,
  "description": "Blur out your private conversations on multiple web chat clients",
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "cs_0.js"
      ],
      "run_at": "document_end",
      "css": [
        "cs_0s.css"
      ]
    },
    {
      "matches": [
        "https://www.messenger.com/*"
      ],
      "js": [
        "cs_1.js"
      ],
      "run_at": "document_end",
      "css": [
        "cs_1s.css"
      ]
    },
    {
      "matches": [
        "https://web.telegram.org/*"
      ],
      "js": [
        "cs_2.js"
      ],
      "run_at": "document_end",
      "css": [
        "cs_2s.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*"
  ],
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "author": "Daniel Cohen <[email protected]>",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png",
    "512": "icons/512.png"
  }
}