Double Click Closes Tab

Double Click Closes Tab

Double left/right or triple left clicks on WEBPAGE (not tab) to close tab. Reopen tab by shiftKey + DC/TC. Optional: an icon to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/closetab.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "name": "__MSG_extName__",
  "options_page": "dcct_options.html",
  "page_action": {
    "default_icon": "icons/no.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.0.9",
  "manifest_version": 2
}