Auto Group Tabs

Auto Group Tabs

Automatically groups similar tabs by pressing Ctrl+Shift+Y

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Group Tabs",
  "version": "0.9.1",
  "description": "Automatically groups similar tabs by pressing Ctrl+Shift+Y",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "tabGroups",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "toggle-pin": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle tab pin"
    }
  }
}