New Tab in Group Keyboard Shortcut

New Tab in Group Keyboard Shortcut

Adds a keyboard shortcut for opening a new tab in the current tab group

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Tab in Group Keyboard Shortcut",
  "version": "1.0",
  "description": "Adds a keyboard shortcut for opening a new tab in the current tab group",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "new-tab-in-group": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Opens New Tab in Group"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2
}