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 ExchangeOn 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.
Alt + D : to select the URL.
Then, if you want a new tab use: Shift + Enter + Alt
If you want a a new window use: Shift + Enter
How to open a new tab to specific web location
How to make links open in same tab? - Google Chrome Community
Is there a shortcut in Chrome which allows me to click on a link and it opens in a new window?
Open a URL in a new tab (and not a new window)
Videos
I have an online website I set to open as my "Home Page". I would like new tabs to open to the same page. For the life of me I can no longer find that option in settings...
Clicking on the links and selecting "Open in New Window" is slowing me down. Its a repetitive task and the seconds are adding up.
I looked for a solution but could not find one.
This is a trick,
function openInNewTab(url) {
window.open(url, '_blank').focus();
}
// Or just
window.open(url, '_blank').focus();
In most cases, this should happen directly in the onclick handler for the link to prevent pop-up blockers, and the default "new window" behavior. You could do it this way, or by adding an event listener to your DOM object.
<div onclick="openInNewTab('www.test.com');">Something To Click On</div>
Reference: Open a URL in a new tab using JavaScript
Nothing an author can do can choose to open in a new tab instead of a new window; it is a user preference. (Note that the default user preference in most browsers is for new tabs, so a trivial test on a browser where that preference hasn't been changed will not demonstrate this.)
CSS3 proposed target-new, but the specification was abandoned.
The reverse is not true; by specifying certain window features for the window in the third argument of window.open(), you can trigger a new window when the preference is for tabs.
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.
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.
I dislike the fact that chrome automatically goes to the new tab. Is there a way to fix this?
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
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.