Tab Group Selector

Tab Group Selector

A convenient way to select a tab group with a keyboard shortcut or a popup menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tab Group Selector",
  "version": "1.0",
  "description": "A convenient way to select a tab group with a keyboard shortcut or a popup menu.",
  "permissions": [
    "tabs",
    "tabGroups",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "/icons/icon_16.png",
      "32": "/icons/icon_32.png",
      "48": "/icons/icon_48.png",
      "128": "/icons/icon_128.png"
    },
    "default_title": "Get Tab Group Names",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      }
    }
  }
}