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": {
    "service_worker": "scripts/background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "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",
  "side_panel": {
    "default_path": "panel.html"
  },
  "action": {
    "default_title": "__MSG_name__"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "offline_enabled": true,
  "minimum_chrome_version": "114",
  "permissions": [
    "contextMenus",
    "storage",
    "sidePanel",
    "declarativeNetRequestWithHostAccess"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}