Open link in new tab

Open link in new tab

This extension forces links in a page to open in new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open link in new tab",
  "version": "1.0.7",
  "manifest_version": 2,
  "description": "This extension forces links in a page to open in new tab.",
  "author": "Narendran",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "homepage_url": "http://twitter.com/narens",
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options/index.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/inject.js"
      ]
    }
  ]
}