SP Tab Shortcuts

SP Tab Shortcuts

Allows pinning and duplication of tabs via keyboard shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SP Tab Shortcuts",
  "version": "2.2",
  "description": "Allows pinning and duplication of tabs via keyboard shortcuts.",
  "manifest_version": 3,
  "background": {
    "service_worker": "tab_shortcuts.js"
  },
  "commands": {
    "toggle-pin-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      },
      "description": "Toggles whether the current tab is pinned."
    },
    "duplicate-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      },
      "description": "Duplicates the current tab."
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}