Click Close Tab

Click Close Tab

A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Click Close Tab",
  "manifest_version": 2,
  "version": "1.2",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "click-close-tab.js"
      ],
      "run_at": "document_end"
    }
  ]
}