Examine source code of tabMind - AI smart tree style tabs

Inspect and view changes in tabMind - AI smart tree style tabs source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "minimum_chrome_version": "123",
  "default_locale": "en",
  "offline_enabled": true,
  "name": "__MSG_extName__",
  "short_name": "tabMind",
  "description": "__MSG_extDescription__",
  "version": "0.0.3",
  "author": "TabRail",
  "icons": {
    "24": "icon-24.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_title": "Open tabMind (Alt + V)"
  },
  "side_panel": {
    "default_path": "panel/index.html"
  },
  "options_page": "options/index.html",
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+T",
        "windows": "Alt+T",
        "mac": "Alt+T",
        "linux": "Alt+T"
      }
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_request_header",
        "enabled": true,
        "path": "request_header.json"
      }
    ]
  },
  "permissions": [
    "contextMenus",
    "sidePanel",
    "storage",
    "scripting",
    "tabs",
    "tabGroups",
    "declarativeNetRequestWithHostAccess"
  ],
  "optional_permissions": [
    "bookmarks"
  ],
  "host_permissions": [],
  "optional_host_permissions": [
    "https://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}