Examine source code of Auto Tab Groups

Inspect and view changes in Auto Tab Groups 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": "Auto Tab Groups",
  "description": "Automatically Set Your Tab Groups!",
  "version": "1.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "dist/background.js"
  },
  "permissions": [
    "storage",
    "tabGroups",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/img/resizedTabLogo16.png",
      "48": "/img/resizedTabLogo48.png",
      "128": "/img/resizedTabLogo128.png"
    }
  },
  "icons": {
    "16": "/img/resizedTabLogo16.png",
    "48": "/img/resizedTabLogo48.png",
    "128": "/img/resizedTabLogo128.png"
  },
  "commands": {
    "close-groups": {
      "suggested_key": "Ctrl+Shift+Y",
      "description": "Close All Open Tab Groups"
    },
    "open-groups": {
      "suggested_key": "Ctrl+Shift+H",
      "description": "Open All Open Tab Groups"
    },
    "toggle-groups": {
      "suggested_key": "Ctrl+Shift+U",
      "description": "Toggle Tab Groups Open Or Closed"
    }
  },
  "options_page": "options/options.html"
}