Side Browser

Side Browser

A Browser extension for Chrome and Firefox that allows you to open a side panel to browse the web while you work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Side Browser",
  "description": "A Browser extension for Chrome and Firefox that allows you to open a side panel to browse the web while you work.",
  "version": "1.0.8",
  "action": {
    "default_icon": "16.png",
    "default_title": "Click to open panel"
  },
  "side_panel": {
    "default_path": "sidepanel.html",
    "default_title": "Side Browser",
    "open_at_install": true,
    "openPanelOnActionClick": true
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "match_about_blank": true,
      "js": [
        "js/content-script.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "sidePanel",
    "bookmarks",
    "favicon",
    "contextMenus",
    "storage",
    "declarativeNetRequestWithHostAccess"
  ],
  "optional_host_permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "minimum_chrome_version": "114"
}