Web浏览器进入kiosk模式

Web浏览器进入kiosk模式

问题描述:

我目前已经找到了一种方法来放置当前安装的Internet Explorer进入kiosk模式使用asp.net和VB

I have currently found a way to place the currently installation of Internet Explorer into kiosk mode using asp.net and VB

System.Diagnostics.Process.Start("iexplore", "-k " & "http://www.google.co.uk")

在-k参数是把浏览器的进入kiosk模式的命令,但是,其他浏览器如铬只能将页面的新实例到另一个标签和Firefox只是打开浏览器,而无需加载窗口。
我需要知道什么命令通过,使得Chrome和Firefox将在同样的方式回应IE

the "-k" parameter is the command that puts the browser into kiosk mode, however, other browsers such as chrome will only put the new instance of the page into another tab and firefox just opens the browser without loading the window. I need to know what commands to pass so that chrome and firefox will respond in the same way as IE.

非常感谢

Chrome浏览器可以做Kiosk模式使用此命令。

Chrome browser can do KIOSK mode with this command.

chrome.exe --chrome-frame -kiosk "your web page".

使用Chrome的好处是,你可以建立一个可以使用WebKit动画应用程序和他们的KIOSK类应用看起来棒极了。

The good thing with Chrome is that you can build apps that can use the webkit animation and they look great for a KIOSK type applications.