Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

Dalšne informacije

Title bar only, no address bar or tab strip

  • 2 wótegronje
  • 1 ma toś ten problem
  • 14 naglědow
  • Slědne wótegrono wót 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?

Wšykne wótegrona (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");
}