Examine source code of TidyTabs

Inspect and view changes in TidyTabs 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": "TidyTabs",
  "description": "TidyTabs chrome extension",
  "version": "0.0.4",
  "icons": {
    "16": "/assets/icon16.png",
    "48": "/assets/icon48.png",
    "128": "/assets/icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icon128.png",
        "assets/google-chrome.png"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "tidyTabs.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Tab optimizer",
    "default_popup": "popup.html"
  },
  "commands": {
    "start": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Run \"start\" on the current page."
    }
  }
}