7

Is there a way to display a webpage without any bars (taskbar, url bar etc)?

DavidPostill
  • 162,382
Rik
  • 71

3 Answers3

2

Is there a way to display a webpage without any bars (task bar, url bar etc)?

You can use use either full screen mode or kiosk mode.


Full screen mode

If Chrome is already running:

  • Press F11 to toggle full screen mode.

To start Chrome in full screen mode:

  • From a cmd shell, batch file or shortcut run the following command:

      "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --start-fullscreen www.google.com
    
  • Replace www.google.com as appropriate.

  • Press F11 to exit full screen mode.


Kiosk mode

  • From a cmd shell, batch file, or shortcut run the following command:

      "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk www.google.com
    
  • Replace www.google.com as appropriate.

  • Press alt+f4 or ctrl+w to exit chrome.

  • Pressing f11 has no effect in Kiosk mode.

DavidPostill
  • 162,382
2

You need to disable this setting View > Always Show Toolbar in Full Screen

enter image description here

Moritz W
  • 121
0

Press F11 to enter full screen mode. This will not start the window in full screen however; you will need to press F11 after you have opened the webpage.

clhy
  • 6,514
Matthew
  • 1,065
  • 3
  • 12
  • 24