Examine source code of The Tab Manager

Inspect and view changes in The Tab Manager 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "The Tab Manager",
  "description": "Now search for a tab in a simplified separate view of opened tabs",
  "version": "1.1",
  "action": {
    "default_popup": "view.html",
    "default_icon": "tab_manager.png",
    "default_title": "Tab Manager"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "background",
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+T",
        "mac": "Alt+T"
      },
      "description": "Tab Manage"
    }
  }
}