Close Other Tabs

Close Other Tabs

Allows you to close other tabs with a toolbar button, an item on the right-click menu or by pressing Alt+Shift+W.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en_US",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.2",
  "icons": {
    "16": "images/close16.png",
    "48": "images/close48.png",
    "128": "images/close128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/close16.png",
      "24": "images/close24.png",
      "32": "images/close32.png"
    },
    "default_title": "__MSG_extensionName__"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+W"
      }
    }
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}