Tidy Tab Groups

Tidy Tab Groups

Automatically collapses your tab groups when you're not using them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tidy Tab Groups",
  "version": "0.0.4",
  "manifest_version": 3,
  "description": "Automatically collapses your tab groups when you're not using them.",
  "icons": {
    "48": "images/logo_center_48x48.png",
    "96": "images/logo_center_96x96.png"
  },
  "permissions": [
    "tabGroups",
    "storage"
  ],
  "background": {
    "service_worker": "pages/Background/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "pages/Tab/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}