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

前端 未结 3 612
温柔的废话
温柔的废话 2021-02-13 02:46

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:13

    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"
    

提交回复
热议问题