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

前端 未结 3 2094
予麋鹿
予麋鹿 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:13

    This might Help

    How can I launch a browser with no window frame or tabs/address bar

    https://superuser.com/questions/459775/how-can-i-launch-a-browser-with-no-window-frame-or-tabs-address-bar

    Following site lists all command line switches for chrome

    http://peter.sh/experiments/chromium-command-line-switches/

    0 讨论(0)
  • 2021-02-13 03:17

    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/"
    
    0 讨论(0)
  • 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"
    
    0 讨论(0)
提交回复
热议问题