Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

Title bar only, no address bar or tab strip

  • 2 отговора
  • 1 има този проблем
  • 14 изгледи
  • Последен отговор от cor-el

more options

In google chrome, after loading a page you can click on the menu button top right and click 'create application shortcut' This creates a shortcut of that page on your computer and allows you to open the page in a minimlist window that only has a title bar. No address bar, no tabs etc. this means the bar at the top of my screen is about 20 pixels instead of 80.

is there anyway of doing this on FireFox?

In google chrome, after loading a page you can click on the menu button top right and click 'create application shortcut' This creates a shortcut of that page on your computer and allows you to open the page in a minimlist window that only has a title bar. No address bar, no tabs etc. this means the bar at the top of my screen is about 20 pixels instead of 80. is there anyway of doing this on FireFox?

Всички отговори (2)

more options

If I understand right, you want to create shortcuts?

deskCut {web link} This extension adds desktop shortcut creation to the context-menu for Windows, Linux and Mac.

more options

Maybe look at this extension.

You can use code like this with the keyconfig extension to quickly toggle all toolbars off/on.

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