Auto Tab Groups

Auto Tab Groups

Automatically Set Your Tab Groups!

Merlin
Additional files are visible only to premium users

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"
}