Examine source code of Tidy Tabs

Inspect and view changes in Tidy 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",
  "manifest_version": 3,
  "name": "Tidy Tabs",
  "description": "Tired of tab chaos? Effortlessly group, highlight, and organize your tabs with Tidy Tabs.",
  "version": "0.2.7",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "assets/logo_48x48.png",
    "96": "assets/logo_96x96.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "tabGroups",
    "action",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}