Reddit in Sidebar

Reddit in Sidebar

Displays Reddit in the sidebar. Provides toggle shortcut and toolbar button. Recommended to unlock the sidebar width by following the step-by-step guide over at my blog.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Reddit in Sidebar",
  "description": "Displays Reddit in the sidebar",
  "version": "1.2.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "applications": {
    "gecko": {
      "strict_min_version": "60.0",
      "id": "{15e57753-391e-4dd7-bd6b-911d22d5ba93}"
    }
  },
  "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": "Reddit",
    "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+8"
      },
      "description": "Toggle the Reddit sidebar."
    }
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/icon1_48.png",
      "96": "icons/icon1_96.png"
    }
  }
}