Сделать Chrome только для отображения страницы (без вкладок или URL-панели)

2068
Rik

Есть ли способ отобразить веб-страницу без каких-либо панелей (панель задач, панель URL и т. Д.)?

4
Если вы нажмете `F11`, страница будет отображаться в полноэкранном режиме без дополнительной информации. AFH 7 лет назад 2

2 ответа на вопрос

1
DavidPostill

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.

0
Matthew

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.