New Tab in Group

New Tab in Group

Opens a new tab in the current group via keyboard shortcut

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",
  "version": "0.0.1",
  "description": "Opens a new tab in the current group via keyboard shortcut",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  },
  "icons": {
    "16": "assets/layer-plus16.png",
    "32": "assets/layer-plus32.png",
    "64": "assets/layer-plus64.png",
    "128": "assets/layer-plus128.png"
  }
}