Sidebar+

Sidebar+

Sidebar for Firefox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "0.6.14",
  "description": "__MSG_extDescription__",
  "author": "zluka",
  "developer": {
    "name": "zluka",
    "url": "https://github.com/zluca/Sidebar"
  },
  "homepage_url": "https://github.com/zluca/",
  "default_locale": "en",
  "icons": {
    "32": "icons/sidebar-icon-32.png",
    "64": "icons/sidebar-icon-64.png"
  },
  "chrome_url_overrides": {
    "newtab": "startpage.html"
  },
  "permissions": [
    "<all_urls>",
    "alarms",
    "bookmarks",
    "downloads",
    "downloads.open",
    "history",
    "notifications",
    "storage",
    "tabs",
    "topSites",
    "unlimitedStorage",
    "webRequest"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "sidebar.html",
    "dialog.html",
    "Roboto-BoldItalic.woff2",
    "Roboto-Bold.woff2",
    "Roboto-Italic.woff2",
    "Roboto-Regular.woff2"
  ],
  "sidebar_action": {
    "default_icon": "icons/sidebar-icon-64.png",
    "default_title": "Sidebar+",
    "default_panel": "sidebar.html#leftBar-native"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/sidebar-icon-64.png",
    "default_title": "__MSG_extTitle__",
    "default_popup": "popup.html",
    "browser_style": true
  },
  "options_ui": {
    "page": "options.html#services"
  },
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "F8"
      }
    }
  }
}