Arvind Purohit
Arvind Purohit

Reputation: 49

How to hide address bar from chrome and mozilla

I want to give demo to some person of my web application so i want to capture screen without Address bar so that they will not know the domain, can you please tell me how to hide address bar or can i hide domain . I have latest chrome and Mozilla

Cheers

Upvotes: 2

Views: 34049

Answers (5)

Ida
Ida

Reputation: 3965

I'm using a self-written stylesheet to achieve that purpose for Firefox.

It hides the complete top-bar and appears when hovering over the top window-border, or focusing the address-bar with the key-combination Ctrl+L.

It's not perfect (e.g. there can be a flickering effect when focusing the address-bar, or after clicking the hamburger-symbol to open the menu, you need to use the Arrow-Down-key for selecting a menu-item) but works for me:

https://github.com/ida/skriptz/blob/dde60dadcca5bb45ce6ca14bb74373637f31a309/setup/browser/ff/userChrome.css

Upvotes: 2

willeM_ Van Onsem
willeM_ Van Onsem

Reputation: 476594

F11 hides the address bar in Firefox eventually. Using it a second time will make the bar reappear.

If you only want to hide the address bar, uncheck the menu item at View > Toolbars > Navigation Toolbar.

Upvotes: 0

BoomZilla
BoomZilla

Reputation: 746

Just for the record and for defending my necromancer badge:

For Firefox: The addon "Hide Navigation Bar" worked till version 52 came out. I don't know of any other method of hiding it.

To hide the Tabbar, the addon "Hide Tabbar" should still work. I guess it will continue to work until November 2017, when WebExtensions will be the big deal and probably break a lot of old addons like e.g. TabGroups. Just read the first few comments on the tab-groups addon page, to learn that not everyone is pleased with WebExtensions, and this to learn that probably some legacy-addons are already defunct.

I'm no addon-developer, and don't know if the situation really is that dramatic, but I'll sure miss tab-groups.

For Chrome: User Force has given the ultimate hint here, for hiding everything except the content-area. I'll use it to watch amazon prime video.

Upvotes: 1

diaryfolio
diaryfolio

Reputation: 625

F11 really maximise the window. But if you move your mouse (or presss any key), the navigation bar reappears, thus revealing the URL again !

For hiding URL

  • Firefox: View -> Toolbars -> Untick "Navigation bar" Toolbar

Upvotes: 1

Rameez
Rameez

Reputation: 1712

In firefox right click on toolbar and uncheck navigation bar, or go to view - > toolbars and uncheck navigation bar. In chrome full screen mode is solution (F11)

Upvotes: 0

Related Questions