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

前端 未结 3 2097
予麋鹿
予麋鹿 2021-02-13 02:37

When executing the following command line:

C:\\>\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\" \"https://aaa.com\" --new-window
<         


        
3条回答
  •  你的背包
    2021-02-13 03:29

    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"
    

提交回复
热议问题