Discord Enhancer

Discord Enhancer

This extension will allow you to hide server/channel/member list on Discord

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Discord Enhancer",
  "description": "This extension will allow you to hide server/channel/member list on Discord",
  "version": "1.0",
  "browser_action": {
    "default_title": "Discord Enhancer",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://discord.com/*"
      ]
    }
  ]
}