Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

Is there an add-on that allow to had the page with any UI, just the content. Same as F11 view but in a minimized state

  • 2 uphendule
  • 1 inale nkinga
  • 1 view
  • Igcine ukuphendulwa ngu cor-el

more options

I use the Always on Top add-on, and minimized a window to watch some video while doing other stuff. But the Web bar and tab bar use to much space, so I was wondering if someone knows about a plugin that allows to hide all UI and leave just the content, something like Fullscreen view by presing F11, but in a minimized state.

Thanks

I use the Always on Top add-on, and minimized a window to watch some video while doing other stuff. But the Web bar and tab bar use to much space, so I was wondering if someone knows about a plugin that allows to hide all UI and leave just the content, something like Fullscreen view by presing F11, but in a minimized state. Thanks

Isisombululo esikhethiwe

Try using this extension. https://addons.mozilla.org/en-US/firefox/addon/custom-geometry/

When you go to set up this extension, you'll have to fiddle with the Options thru the Add-ons Manager tab, and adjust the Width, Height, Left, and Top to suit your needs. If you don't have a super huge resolution monitor the default settings in CG will place the Firefox window off the right-side of the screen.

Once you get those parameters set, move the Toolbar button to a Toolbar. When you hit F11 that window will go into full screen maximized mode, then move the cursor to the top of the screen to reveal the toolbars and hit the Custom Geometry button to restore your custom window size and position. Afterwards that window will snap into place and the toolbars will hide again. YMMV

Note: Custom Geometry was never [imo] updated properly for Firefox 4 and the toolbar button drop-down menu doesn't work and adds to the width of the toolbar button.

Funda le mpendulo ngokuhambisana nalesi sihloko 👍 1

All Replies (2)

more options

Isisombululo Esikhethiwe

Try using this extension. https://addons.mozilla.org/en-US/firefox/addon/custom-geometry/

When you go to set up this extension, you'll have to fiddle with the Options thru the Add-ons Manager tab, and adjust the Width, Height, Left, and Top to suit your needs. If you don't have a super huge resolution monitor the default settings in CG will place the Firefox window off the right-side of the screen.

Once you get those parameters set, move the Toolbar button to a Toolbar. When you hit F11 that window will go into full screen maximized mode, then move the cursor to the top of the screen to reveal the toolbars and hit the Custom Geometry button to restore your custom window size and position. Afterwards that window will snap into place and the toolbars will hide again. YMMV

Note: Custom Geometry was never [imo] updated properly for Firefox 4 and the toolbar button drop-down menu doesn't work and adds to the width of the toolbar button.

more options

You can open the Browser Console (Firefox/Tools > (Web) Developer) in the window where you want to hide the toolbars. Paste the JavaScript code in the command line and press the Enter key to run the code.

var {classes:Cc,interfaces:Ci} = Components;
var wm = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
var gB = wm.getMostRecentWindow("navigator:browser").window.document;
gB.querySelector("#navigator-toolbox").style.setProperty("display","none","important");