When running the following command line:
C:\>"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" "https://aaa.com" --new-window
it opens the browser in a new window, but with all the toolbars - how can I open the browser like a pop-up window?
Perhaps โapplication modeโ is what you are looking for.
Here is an example:
"C:\Program Files\Google\Chrome\Application\chrome.exe" --app="http://www.youtube.com/"
This can help
How to launch a browser without a window frame or tab / address bar
https://superuser.com/questions/459775/how-can-i-launch-a-browser-with-no-window-frame-or-tabs-address-bar
Listed below are all the command line switches for chrome
http://peter.sh/experiments/chromium-command-line-switches/
in mozilla firefox you can do it like
firefox.exe -new-window "www.google.com" firefox.exe -new-tab "www.google.com"
in google chrome you can do it like
chrome.exe --app="www.google.com" chrome.exe --kiosk "www.google.com"
Source: https://habr.com/ru/post/976016/More articles:How to do it in TObjectList? - iteratorCapybara, Poltergeist and Reactjs - 'undefined' is not a function - ruby-on-railsCSS Use the value of counter () as the value of the property. - cssC # - Comparing strings of different encodings - stringiOS8 - dynamic-height keyboard accessory appearance - iosPagerTabStrip - show all tabs on the screen, like a normal tab implementation in the action bar? - androidDefine mixed floating point format on ARM platform correctly - c ++C: representation of large integers - cSupport for Unicode C11 - cAFNetworking upload task with credentials (HTTP Basic Auth) - uploadAll Articles