Open link in same tab, pop-up as tab

Open link in same tab, pop-up as tab

Forces Edge to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.

Additional files are visible only to premium users

manifest.json


{
  "author": "sergiy.net",
  "background": {
    "scripts": [
      "UseOneWindow.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon48.png",
    "default_popup": "popup.html",
    "default_title": "Open link in same tab, pop-up as tab"
  },
  "content_scripts": [
    {
      "js": [
        "OpenInTheSameTab.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Forces Edge to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "Open link in same tab, pop-up as tab",
  "short_name": "ReuseTab",
  "permissions": [
    "tabs",
    "storage"
  ],
  "version": "2.3.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}