All links open in new tab

All links open in new tab

Click on this extension's button in popup panel, will add target=_blank to all links in current page.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "All links open in new tab",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Click on this extension's button in popup panel, will add target=_blank to all links in current page.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "myscript.js"
      ]
    }
  ]
}