Hide Discord Sidebar

Hide Discord Sidebar

Hide Discord Servers and Channels! Installs a button that hides/shows the Discord server list and autohides the channels list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Discord Sidebar",
  "short_name": "Hide Dis Bar",
  "version": "4.4.0",
  "description": "Hide Discord Servers and Channels! Installs a button that hides/shows the Discord server list and autohides the channels list.",
  "manifest_version": 3,
  "icons": {
    "128": "icons/icon128-active.png"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "*://*.discord.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icons/icon128-inactive.png",
    "default_popup": "popup/popup.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.discord.com/*"
      ],
      "css": [
        "hide-discord-sidebar.css"
      ],
      "js": [
        "hide-discord-sidebar.js"
      ],
      "run_at": "document_start"
    }
  ]
}