TabLink

TabLink

Open a link in a new tab, not in the same

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "TabLink",
  "version": "0.4",
  "manifest_version": 2,
  "description": "Open a link in a new tab, not in the same",
  "icons": {
    "48": "tablink48.png",
    "128": "tablink128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "js": [
        "find.js"
      ],
      "all_frames": true
    }
  ]
}