It's a setting in chrome. You can't control how the browser interprets the target _blank.

Answer from Dennis Traub on Stack Overflow
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › API › Window › open
Window: open() method - Web APIs | MDN
The open() method of the Window ... indicating the URL or path of the resource to be loaded. If an empty string ("") is specified or this parameter is omitted, a blank page is opened into the targeted browsing context....
🌐
W3Schools
w3schools.com › jsref › met_win_open.asp
Window open() Method
window.open(URL, name, specs, replace) Open an about:blank page in a new window/tab: var myWindow = window.open("", "", "width=200,height=100"); Try it Yourself » ·
🌐
Webmaster World
webmasterworld.com › html › 4683942.htm
Target=“ blank” vs window.open - HTML forum at WebmasterWorld - WebmasterWorld
HTML doesn't distinguish between "new window" and "new tab". It depends on how chummy your users are with their browser's prefs. ... Can someone add Target=“ _blank” to in-post links at WW Middle Click? (or SHIFT + Middle Click?) What's the shortcut on Mac? The · target attribute requires a transitional DOCTYPE in HTML 4, but OK in HTML 5. ... Ctrl+Click works for Chrome. But when the post goes like "look at the graph, during the months of...", one assumes that the link will open in a new tab to have it checked out while reading the post.
🌐
SitePoint
sitepoint.com › html & css
Target=“_blank” vs window.open - HTML & CSS - SitePoint Forums | Web Development & Design Community
June 30, 2014 - I’m working on an application where users enter some input and they shouldn’t leave the page when clicking on share links, e.g. a Facebook share link: Share on Facebook I know it’s very common to use popup windows for such links. But does it have any advantage over a simple target=“_blank” attribute?
🌐
SitePoint
sitepoint.com › get started
When to use target="_blank" or onClick="window.open()"? - Get Started - SitePoint Forums | Web Development & Design Community
April 26, 2010 - I have a couple questions regarding the topic in the title of this thread. Looking at a best practices standpoint, when is it alright or not alright to have a link open in a new window/tab? Looking at a usability stand…
🌐
Mozilla Support
support.mozilla.org › en-US › questions › 1165910
window.open using _blank open in same window | Firefox Support Forum | Mozilla Support
It seems in the latest update when using window.open(url,'_blank') in place of opening the link in a new window/tab, it is opening it in the current tab
🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 1338406 › does-edge-browser-no-longer-support-using-blank-to
Does Edge browser no longer support using "_blank" to open a new Edge window? - Microsoft Q&A
As far as I know, and from what I've tested in most modern browsers, window.open() opens a new tab by default (including using the _blank attribute) rather than a new application window.
🌐
Educative
educative.io › answers › what-is-the-windowopen-method-in-javascript
What is the window.open() method in JavaScript?
In JavaScript, you can do the same thing using the window.open() method. The JavaScript option is useful, even though we can achieve this task with HTML as well. Sometimes, for example, we may need to redirect to a page in our JavaScript code. ... The general syntax is described below. ... All parameters of this method are optional. If none is specified, the method will open a new blank browser window.
Find elsewhere
🌐
Alexking
alexking.org › blog › 2005 › 12 › 30 › new-windows
window.open(this.href) vs target=”_blank”
Like most people who have migrated to XHTML for web development, I stopped using target="_blank" for opening links in new windows in favor of onclick="window.open(this.href); return false". They accomplish the same thing (opening the link in a new window) and the second one validates.
🌐
GitHub
github.com › whatwg › html › issues › 4078
Windows opened via <a target=_blank> should not have an opener by default · Issue #4078 · whatwg/html
October 10, 2018 - While most developers expect a window opened via window.open() to have an opener, I believe most do not necessarily realize the same applies to windows opened via <a target=_blank>. It is unfortunately too rare to see Web developers use rel="noopener" in cases where it can and should definitely be used, even on top Web sites (see for example articles on Google News).
Author   cdumez
🌐
GitHub
gist.github.com › sttk › 22e74eaadde493265f38c539f3cafb37
Window open · GitHub
Initially, an opened window has "about:blank", and then sets a specified URL when the window start to loaded the URL.
🌐
Experts Exchange
experts-exchange.com › questions › 28995999 › Window-Open-is-showing-a-blank-page.html
Solved: Window.Open() is showing a blank page | Experts Exchange
April 19, 2016 - Hi, I have to open a new window from one of my index page. So I have added Window.Open('../Home/Index ... The new window is populating with a blank screen.