Examine source code of Tab Manager for Chrome™

Inspect and view changes in Tab Manager for Chrome™ 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",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.5",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "__MSG_name__",
    "default_icon": "assets/static/128.png",
    "default_popup": "./popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "./js/background.js"
  },
  "commands": {
    "tab-manager": {
      "suggested_key": {
        "default": "Alt+E",
        "linux": "Alt+E",
        "windows": "Alt+E",
        "mac": "Command+E"
      },
      "description": "Open tab manager"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf",
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}