Discord in Sidebar

Discord in Sidebar

Displays Discord in the sidebar, provides customizable keyboard shortcut and toggle button. Follow my step-by-step guide to unlock the sidebar width on GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Discord in Sidebar",
  "description": "Displays Discord in the sidebar.",
  "version": "1.3",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "100.0",
      "id": "{a16c3799-d903-44e3-b044-a032197f5ef8}"
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "sidebar_action": {
    "default_icon": {
      "48": "icons/icon1_48.png",
      "96": "icons/icon1_96.png"
    },
    "default_title": "Discord",
    "default_panel": "sidebar/panel.html"
  },
  "icons": {
    "48": "icons/icon1_48.png",
    "96": "icons/icon1_96.png"
  },
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "Toggle the Discord sidebar."
    }
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/icon1_48.png",
      "96": "icons/icon1_96.png"
    }
  }
}