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.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"author": "sergiy.net",
"background": {
"scripts": [
"UseOneWindow.js"
]
},
"browser_action": {
"default_icon": "icon128.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": {
"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.2",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}