GroupMark - Enhanced Tab Groups

GroupMark - Enhanced Tab Groups

Unlock the full potential of Chrome tab groups.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "version": "1.0.3",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "tabGroups",
    "storage",
    "downloads"
  ],
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "GroupMark",
    "default_icon": {
      "16": "img/16.png",
      "48": "img/48.png",
      "128": "img/128.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "commands": {
    "open_tab_group_1": {
      "suggested_key": {
        "windows": "Alt+Shift+1",
        "mac": "Alt+Shift+1",
        "chromeos": "Alt+Shift+1",
        "linux": "Alt+Shift+1"
      },
      "description": "Open the first tab group"
    },
    "open_tab_group_2": {
      "suggested_key": {
        "windows": "Alt+Shift+2",
        "mac": "Alt+Shift+2",
        "chromeos": "Alt+Shift+2",
        "linux": "Alt+Shift+2"
      },
      "description": "Open the second tab group"
    },
    "open_tab_group_3": {
      "suggested_key": {
        "windows": "Alt+Shift+3",
        "mac": "Alt+Shift+3",
        "chromeos": "Alt+Shift+3",
        "linux": "Alt+Shift+3"
      },
      "description": "Open the third tab group"
    },
    "open_tab_group_4": {
      "suggested_key": {
        "windows": "Alt+Shift+4",
        "mac": "Alt+Shift+4",
        "chromeos": "Alt+Shift+4",
        "linux": "Alt+Shift+4"
      },
      "description": "Open the fourth tab group"
    }
  }
}