Tab Shelf - Side panel vertical tabs

Tab Shelf - Side panel vertical tabs

Vertical tab management from your side panel with support for tab groups, multiple windows, and much more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Shelf - Side panel vertical tabs",
  "version": "2023.5.2",
  "description": "Vertical tab management from your side panel with support for tab groups, multiple windows, and much more.",
  "manifest_version": 3,
  "author": "Clarence Siew",
  "permissions": [
    "storage",
    "tabs",
    "tabGroups",
    "sidePanel",
    "favicon"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "action": {
    "default_title": "Click to open Tab Shelf"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}