Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I run Chrome without all browser's controls (tabs, address line, buttons)?

How can I run Chrome without all browser's controls (tabs, address line, buttons)?

only page-area loaded with specific URL

Thanks

like image 221
pliashkou Avatar asked Aug 11 '12 12:08

pliashkou


People also ask

How do I use Chrome without tabs?

Hide Tabs Using F11 Shortcut Pressing the F11 button on your keyboard makes Google Chrome go into full-screen view. This, in turn, hides the address bar and all the tabs from the toolbar menu.

How do I hide the tabs and address bar in Chrome?

To get started enter “about:flags” into the Address Bar and hit Enter. Scroll down until you see the listing for Compact Navigation. Enable it and let the browser restart to gain access to the feature. Once the browser has restarted right click on one of the tabs and select Hide the toolbar from the Context Menu.


1 Answers

Assuming you want to open a specific URL (let's say http://www.example.com), here are 3 options for your consideration. For all options, start by creating a shortcut to Chrome.exe, which you will edit by adding a flag/switch to the 'Target' property of the shortcut.

  1. Open as an App - Use a 'Target' like this:

    "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=http://www.example.com

This will open the web page in a generic Windows window, with no browser Chrome available although you can still access browser tools, e.g., pressing F12 to open Developer Tools.

  1. Open Fullscreen - Use a 'Target' like this:

    "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" http://www.example.com --start-fullscreen

This will open the web page in a Chrome window, which will start fullscreen unless there is another instance of Chrome already open, in which case the page will open in that instance. If you press F11, the browser will return to its normal view mode.

  1. Open in Kiosk Mode - Use a 'Target' like this:

    "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" http://www.example.com --kiosk

This will open the web page in a Chrome window, which will start in Kiosk mode unless there is another instance of Chrome already open, in which case the page will open in that instance. From my understanding, the only way to close this would be to press Alt+F4.

As mr_kazz explained, you can refer to http://www.chromium.org/developers/how-tos/run-chromium-with-flags to see which flags you can use to when launching a Chrome shortcut.

like image 200
Gerry Avatar answered Sep 21 '22 05:09

Gerry