Page Sidebar | Open any page in side panel

Page Sidebar | Open any page in side panel

Effortlessly open any website in your web browser's sidebar – streamline your workflow instantly!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_namefull__",
  "short_name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.6",
  "background": {
    "scripts": [
      "scripts/constants.js",
      "scripts/background.js"
    ]
  },
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "96": "images/icon96.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/scripts/communicate.js"
      ],
      "match_about_blank": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "sidebar_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png"
    },
    "default_title": "__MSG_name__",
    "default_panel": "panel.html",
    "open_at_install": true
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png"
    },
    "default_title": "__MSG_name__"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "storage",
    "declarativeNetRequestWithHostAccess"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "113.0"
    }
  }
}