Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

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");
}