HideChat

HideChat

This extension hides the recent chat section on web.whatsapp.com and shows it on hover.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "HideChat",
  "version": "1.2",
  "manifest_version": 3,
  "description": "This extension hides the recent chat section on web.whatsapp.com and shows it on hover.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "res/icon_16.png",
    "32": "res/icon_32.png",
    "128": "res/icon_180.png",
    "192": "res/icon_192.png",
    "512": "res/icon_512.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}