Close other tabs

Close other tabs

Close all tabs except active in one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.2",
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "commands": {
    "close-other-tabs": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Close other tabs"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/128.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "64": "icons/128.png",
      "128": "icons/128.png"
    },
    "default_title": "__MSG_title__",
    "default_popup": "confirm.html"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": false
  },
  "default_locale": "en",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}