Hide Discord Sidebar

Hide Discord Sidebar

Installs an unfolding sidebar for Discord channels and a button that hides/shows the Discord server list.

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 Discord Bar",
  "version": "6.9",
  "description": "Installs an unfolding sidebar for Discord channels and a button that hides/shows the Discord server list.",
  "manifest_version": 2,
  "permissions": [
    "*://*.discordapp.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.discordapp.com/*"
      ],
      "css": [
        "hide-discord-sidebar.css"
      ],
      "js": [
        "hide-discord-sidebar.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png"
  }
}