WhatsHide

WhatsHide

NOT related in any way to WhatsApp Inc., This Extension hides private chats of WhatsApp Web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WhatsHide",
  "description": "__MSG_descriptionApp__",
  "version": "2.1",
  "default_locale": "en",
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_defaultTitle__"
  },
  "content_scripts": [
    {
      "matches": [
        "http://web.whatsapp.com/*",
        "https://web.whatsapp.com/*",
        "http://whatsapp.com/*",
        "https://whatsapp.com/*"
      ],
      "js": [
        "/scripts/jquery-3.1.0.min.js",
        "/scripts/filterdom.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://ajax.googleapis.com/"
  ]
}