Close Tab Shortcut

Close Tab Shortcut

Customize chrome shortcut to close current tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Close Tab Shortcut",
  "permissions": [
    "tabs"
  ],
  "version": "1.0",
  "description": "Customize chrome shortcut to close current tab",
  "commands": {
    "close-tab": {
      "suggested_key": {
        "default": "Alt+X",
        "mac": "Ctrl+X"
      },
      "description": "Close current tab"
    }
  },
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": false
  }
}