Tab Management Shortcuts

Tab Management Shortcuts

Keyboard shortcut definitions attached to Chrome extensions override any other shortcuts that might already exist. If you want to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Management Shortcuts",
  "version": "1",
  "manifest_version": 2,
  "icons": {
    "48": "tab48.png",
    "128": "tab128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs"
  ],
  "commands": {
    "new-window": {
      "description": "New window",
      "global": false
    },
    "new-tab": {
      "description": "New tab",
      "global": false
    },
    "close-tab": {
      "description": "Close tab",
      "global": false
    },
    "next-tab": {
      "description": "Next tab",
      "global": false
    },
    "prev-tab": {
      "description": "Prev tab",
      "global": false
    }
  }
}