New Tab

New Tab

Open external link on new tab on google search result, Jira and Stackoverflow

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Tab ",
  "version": "1.2",
  "description": "Open external link on new tab on google search result, Jira and Stackoverflow",
  "manifest_version": 3,
  "action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://stackoverflow.com/*",
        "https://*.atlassian.net/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/ExtLink.js"
      ]
    }
  ]
}