Discord DM Hider

Discord DM Hider

Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Discord DM Hider",
  "description": "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.",
  "version": "1.0",
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_matches": [
        "*://*.discord.com/*.html",
        "*://*.discord.com/*.html?*",
        "*://*.discord.com/*.htm",
        "*://*.discord.com/*.htm?*"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.discord.com/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": []
}