Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open a URL in Firefox\Chrome from command line in pop up mode?

When executing 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 popup?

like image 461
gabbi soloer Avatar asked Sep 29 '14 16:09

gabbi soloer


1 Answers

Maybe "application mode" is what you are looking for.

Here's an example:

"C:\Program Files\Google\Chrome\Application\chrome.exe" --app="http://www.youtube.com/"
like image 186
user2757572 Avatar answered Oct 23 '22 15:10

user2757572