Windows – How to run chrome in app mode without window frame

google-chromekioskwindows 8.1

I would like to run chrome in app mode without using a windows frame and the title bar?

At the moment I start chrome in this way: chrome.exe --app=http://url.com --app-shell-host-windows-bounds. That works but there is still the window frame with the title frame visible. The user should not have the opportunity to close, maximize or minimize the chrome window.
Furthermore I want to have special size for the chrome browser. But the switch --app-shell-host-windows-bounds does not have any effect with the size e.g. 600×1024 or 1024×600.

How can change the size of the browser window with this switch?

Best Answer

Developers have madness if allow "The user should not have the opportunity to close, maximize or minimize the chrome window. ". But it possible do it with external tools(i don't will say how).

You can set size and position with this command line:

--window-size=1024,600
--window-position=600,600

Here more info.

Chromium command line switches

Related Question