如何使用新的 window 和特定监视器在 windows 中启动 chrome 浏览器全屏
How to launch chrome browser fullscreen in windows with new window and in specific monitor
我已经尝试了很多 windows 快捷方式的变体 Chrome 以在特定的桌面监视器中启动全屏信息亭模式,其中 none 可以使用所有选项立刻。
变化尝试:
"local path\Google\Chrome\Application\chrome.exe" --window-position=0,0 -kiosk -new-window url
"local path\Google\Chrome\Application\chrome.exe" --start-fullscreen -new-window --window-position=0,0 url
chrome -kiosk -new-window --window-position=0,0 --app=url
chrome --start-fullscreen -new-window --windowposition=0,0 --app=url
只是为了帮助任何尝试复制的新用户,将上面的“本地路径”替换为使您进入系统中 google chrome.exe 应用程序的目录路径。还要将“url”替换为完整的 link 到您要在启动时在 chrome 中加载的页面。现在所有的尝试都有自助服务终端全屏或位置,但不是所有的都在一个工作中。
在其他一些帮助下找到了一个在 windows 10.
的所有方面都适合我的解决方案
"local path\Google\Chrome\Application\chrome.exe" --app="url" --window-position=1024,0 --kiosk --user-data-dir= c:/监视器2
只需使用显示器的最大显示区域设置 window 位置即可。在这种情况下,我在第二台显示器上启动,主要是 1024 分辨率。
我已经尝试了很多 windows 快捷方式的变体 Chrome 以在特定的桌面监视器中启动全屏信息亭模式,其中 none 可以使用所有选项立刻。 变化尝试: "local path\Google\Chrome\Application\chrome.exe" --window-position=0,0 -kiosk -new-window url "local path\Google\Chrome\Application\chrome.exe" --start-fullscreen -new-window --window-position=0,0 url chrome -kiosk -new-window --window-position=0,0 --app=url chrome --start-fullscreen -new-window --windowposition=0,0 --app=url
只是为了帮助任何尝试复制的新用户,将上面的“本地路径”替换为使您进入系统中 google chrome.exe 应用程序的目录路径。还要将“url”替换为完整的 link 到您要在启动时在 chrome 中加载的页面。现在所有的尝试都有自助服务终端全屏或位置,但不是所有的都在一个工作中。
在其他一些帮助下找到了一个在 windows 10.
的所有方面都适合我的解决方案"local path\Google\Chrome\Application\chrome.exe" --app="url" --window-position=1024,0 --kiosk --user-data-dir= c:/监视器2
只需使用显示器的最大显示区域设置 window 位置即可。在这种情况下,我在第二台显示器上启动,主要是 1024 分辨率。