On Windows press Alt + D then Shift + Enter

On Mac press Command + L then Shift + Enter.

Alt + D or Command + L to select the URL. Shift + Enter to open the URL in a new window.

Answer from SGventra on Stack Exchange
🌐
Google Support
support.google.com › chrome › thread › 3520860 › how-do-i-set-chrome-to-open-links-in-a-new-tab-on-the-same-browser-window
how do i set chrome to open links in a new tab on the same browser window? - Google Chrome Community
Skip to main content · Google Chrome Help · Sign in · Google Help · Help Center · Community · Google Chrome · Terms of Service · Submit feedback · Send feedback on
🌐
Google Support
support.google.com › chrome › answer › 95314
Set your homepage and startup page - Computer - Google Chrome Help
On your computer, open Chrome. At the top right, select More Settings. On the left, select On startup Open the New Tab page.
🌐
Google Support
support.google.com › chrome › answer › 2391819
Manage tabs in Chrome - Computer - Google Chrome Help
Your shortcuts Learn how to customize your New Tab page. ... At the top of your Google Chrome window, next to the last tab on the right, click New tab . Or, use a keyboard shortcut: ... Click and drag the tab outside the Google Chrome window. ... From your computer's desktop or folder, drag the file into a Google Chrome tab. If the action is successful, your cursor will display Add . Browse and select the file from your computer. Open a new tab, then use a keyboard shortcut:
🌐
Quora
quora.com › How-do-I-open-a-link-in-a-new-tab-but-stay-on-the-same-page-in-Google-Chrome
How to open a link in a new tab but stay on the same page in Google Chrome - Quora
Answer (1 of 7): You can simply open a new tab and stay on the same page by: 1. Right clicking the link that you want to open in a new tab 2. Then select, “Open link in new tab” Another way to do this is by holding down the Command or Control key (Depending if you’re on MAC or PC) then ...
🌐
Google Support
support.google.com › chrome › thread › 17211390 › how-to-make-links-open-in-same-tab
How to make links open in same tab? - Google Chrome Community
Skip to main content · Google Chrome Help · Sign in · Google Help · Help Center · Community · Google Chrome · Terms of Service · Submit feedback · Send feedback on
🌐
Windows 10 Forums
tenforums.com › browsers-email › 131605-how-force-open-link-same-tab-google-chrome.html
How To Force Open Link In Same Tab In Google Chrome - Windows 10 Help Forums
'External Links' will always open in a new tab by default, (in Chrome, at least) It uses less resources than back paging and re-loading; not only for the user but also for the sites. Don't know of a hack to circumvent the process but, there are extensions that will facilitate it. I tried looking for extensions, I found one, but it didn't work so I uninstalled it. I don't remember its name. I found this page ( https://support.mozilla.org/en-US/questions/970999 ) which is EXACTLY what I need, yet that option is for FireFox.
Find elsewhere
🌐
How-To Geek
howtogeek.com › home › features › how to open a new tab to a specific webpage in your browser
How to Open a New Tab to a Specific Webpage in Your Browser
December 15, 2016 - We'll show you how to open a new tab to a specific webpage you want to see in Google Chrome, Mozilla Firefox, Internet Explorer, Opera, and Safari. Because we like to use Google to search the web, and that's what we often do on a new tab, we'll set Google Advanced Search as the URL that opens on a new tab in our examples for each of these browsers. You can set your new tab page URL to anything you want.
🌐
Google Groups
groups.google.com › a › chromium.org › g › chromium-discuss › c › yZOMxAd0zk8
Open link in same tab
It's the Chrome Toolbox (by Google) extension you are looking for. https://chrome.google.com/webstore/detail/fjccknnhdnkbanjilpjddjhmkghmachn You can choose to open in front or background tab. I personally Ctrl+Click when I need to open a link in a new tab.
Top answer
1 of 2
2

Hello NormF

My Name is Paul one of the Community Advisor and a Microsoft Consumer like you. In the new edge chromium you need to install a chrome extension to be able to acheive that since Microsoft Edge allow's chrome extensions now to the the browser.

Here's the link so you can add this extension https://chrome.google.com/webstore/detail/new-t... and make sure to allow Edge Store once prompted by Microsoft Edge.

Once the extension is added click the 3 dotted icons on the upper right for you to manage the URL's in your new tabs.

If you have further questions regarding this please let me know and I will answer back as soon as I can.

Regards and stay safe.

Note: This is a non-Microsoft website. The page appears to be providing accurate, safe information. Watch out for ads on the site that may advertise products frequently classified as a PUP (Potentially Unwanted Products). Thoroughly research any product advertised on the site before you decide to download and install it.

2 of 2
0

Here's a helpful link on how to manage your new MS EDGE New Tab page, if you scroll at the bottom there's more info for Add Your Own URL using the chrome extension that I suggested earlier.

https://www.howtogeek.com/659869/how-to-customi...

Regards,

Note: This is a non-Microsoft website. The page appears to be providing accurate, safe information. Watch out for ads on the site that may advertise products frequently classified as a PUP (Potentially Unwanted Products). Thoroughly research any product advertised on the site before you decide to download and install it.

🌐
Google Support
support.google.com › chrome › thread › 1938141 › how-to-force-new-chrome-tabs-to-open-with-homepage
How to force new Chrome tabs to open with homepage. - Google Chrome Community
Skip to main content · Google Chrome Help · Sign in · Google Help · Help Center · Community · Google Chrome · Terms of Service · Submit feedback · Send feedback on
Top answer
1 of 3
4

You can add a little user script to break target="_blank":

var a = document.getElementsByTagName("a");
for (i=0; i<a.length; i++)
    if (a[i].target == "_blank")
        a[i].target = "_self";

How you get something like that to run is another question.

You need to run Chromium with --enable-user-scripts so you need to alter your launchers (right click the menu, edit menus, etc). The command should be:

chromium-browser %U --enable-user-scripts

Then you need to save the script:

mkdir ~/.config/chromium/Default/User\ Scripts/
gedit ~/.config/chromium/Default/User\ Scripts/target-eater.user.js

Paste in the script, save and edit gedit. Launch chromium with --enable-user-scripts and the script should automatically load and start nuking _blanks

2 of 3
2

In earlier years of web design it was more common for designers to make all external URLs open in new windows, but increasingly it is considered poor practice because, as you have discovered, it takes control away from the user.

The article Should Links Open In New Windows? makes a good point-by-point argument in support of this view.

Hackish workarounds that dynamically strip the target="blank" attribute in your web browser exist, but you should not have to use them. These workarounds only treat the symptoms.

The only solution

Write to the webmasters of problematic sites and politely explain how disrespectful and hostile the overuse of target="blank" is. Point out how links that open in new windows break the visitor's back button, creating a obstacle for users trying to return to their site. Make the case that their design forcefully robs users of the choice to control their own computer.

If users speak up about this problem, maybe, with time, we won't have to resort to the other answers workarounds posted here anymore.

🌐
SigmaOS
sigmaos.com › tips › browsers › how-to-open-a-new-tab-on-google-chrome
How to Open a New Tab on Google Chrome | Browser Tips | SigmaOS
Before we dive into opening a new tab, let's take a quick look at what tabs are and their benefits. Tabs are a convenient way to switch between different web pages without losing track of where you started. Instead of opening multiple web pages in separate windows, Chrome lets you open them all in a single window, separated into different tabs.
🌐
UiPath Community
forum.uipath.com › help › robot
How to open new tab of the same browser - Robot - UiPath Community Forum
March 12, 2023 - I want to open multiple new tabs (one by one) [say 5 for now] and execute specific actions: click, type into, etc, and submit each page one by one. Is this possible through UiPath? This is much like a filling form by opening 5 new tabs and executing each tab(page) one by one.
🌐
Wikihow
wikihow.com › computers and electronics › internet › internet browsers › how to open a new window: 4 easy ways
How to Open a New Window in a Web Browser
June 4, 2025 - ... There is currently no setting in Google Chrome that controls this. You'll have to right-click on the link, and select "Open in new tab" or "Open in new window." Other browsers may allow you to specify options when a link is clicked.