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


{
  "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": 2,
  "icons": {
    "128": "icons/icon128-active.png"
  },
  "permissions": [
    "*://*.discord.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icons/icon128-inactive.png",
    "default_popup": "popup/popup.html"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*.discord.com/*"
      ],
      "css": [
        "hide-discord-sidebar.css"
      ],
      "js": [
        "hide-discord-sidebar.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{26486136-0bdc-45be-a4d8-b141c998b98f}"
    }
  }
}