Thready - Vertical Tabs

Thready - Vertical Tabs

Vertical tabs, bookmarks, history and readling list in side panel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Thready - Vertical Tabs",
  "description": "Vertical tabs, bookmarks, history and readling list in side panel.",
  "version": "0.3.4",
  "manifest_version": 3,
  "icons": {
    "16": "images/tt16.png",
    "32": "images/tt32.png",
    "48": "images/tt48.png",
    "128": "images/tt128.png"
  },
  "action": {
    "default_icon": "images/tt48.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "images/tt16.png",
        "images/tt32.png",
        "images/tt48.png",
        "images/tt128.png"
      ],
      "use_dynamic_url": false
    }
  ],
  "optional_permissions": [
    "bookmarks",
    "readingList",
    "history"
  ],
  "permissions": [
    "tabs",
    "sidePanel",
    "favicon",
    "storage",
    "tabGroups"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; style-src 'self' data: 'unsafe-inline'; connect-src 'self' ws: http: ; default-src 'self' data: blob: https:"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      },
      "description": "Toggle side panel"
    }
  }
}