Duplicate Tab for Chrome

Duplicate Tab for Chrome

Adds a keyboard shortcut which enables to duplicate the current tab in Google Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Duplicate Tab for Chrome",
  "description": "Adds a keyboard shortcut which enables to duplicate the current tab in Google Chrome.",
  "version": "2.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs"
  ],
  "commands": {
    "duplicate-tab": {
      "suggested_key": {
        "default": "Alt+D",
        "mac": "Alt+D"
      },
      "description": "Duplicates the current tab"
    }
  }
}