Duplicate Hotkey

Duplicate Hotkey

Adds hotkey to duplicate a chrome-tab (Ctrl-Shift-S, change it in Keyboard-Shortcuts)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Duplicate Hotkey",
  "description": "Adds hotkey to duplicate a chrome-tab (Ctrl-Shift-S, change it in Keyboard-Shortcuts)",
  "icons": {
    "16": "hotkey16.png",
    "48": "hotkey48.png"
  },
  "commands": {
    "duplicate": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "linux": "Ctrl+Shift+S"
      },
      "description": "Duplicate Tab"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "background"
  ],
  "version": "1.0.2",
  "minimum_chrome_version": "9",
  "manifest_version": 2
}