Shift+LeftClick opens links in a new active tab

Shift+LeftClick opens links in a new active tab

This simple addon opens links in a new active tab with Shift+LeftClick (left mouse button click), not in a new window Mainly for users, who used this shotcut in other browsers (e.g. Opera 12). You can select your own mouse + mod key combination.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "2.0.3resigned1",
  "description": "__MSG_extensionDescription__",
  "author": "__MSG_author__",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "jid1-0FR6i1UdmfWu1w@jetpack"
    }
  },
  "icons": {
    "48": "icon.png",
    "64": "icon64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ]
}