Blank Target

Blank Target

Forces all links on a page to open in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Blank Target",
  "description": "Forces all links on a page to open in a new tab.",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "blank.js"
      ]
    }
  ]
}