Close Tab

Close Tab

Add a tab close action to the page context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Close Tab",
  "version": "1.8.0",
  "minimum_chrome_version": "91",
  "description": "Add a tab close action to the page context menu",
  "default_locale": "en",
  "manifest_version": 3,
  "options_ui": {
    "page": "options_inline.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "action": {
    "default_icon": {
      "19": "img/logo19.png",
      "38": "img/logo38.png"
    },
    "default_title": "Close selected tab"
  },
  "background": {
    "service_worker": "bg.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ]
}