Examine source code of Tabbedin - Organize tabs

Inspect and view changes in Tabbedin - Organize 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.2.0.0",
  "version_name": "1.2.0",
  "manifest_version": 3,
  "default_locale": "ru",
  "action": {
    "default_popup": "src/popup/index.html"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "offline_enabled": true,
  "permissions": [
    "storage",
    "tabs",
    "tabGroups",
    "background",
    "commands"
  ],
  "icons": {
    "16": "src/assets/logo.png",
    "24": "src/assets/logo.png",
    "32": "src/assets/logo.png",
    "128": "src/assets/logo.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+B",
        "windows": "Alt+B",
        "mac": "Command+B"
      }
    }
  }
}