საიტის გასაუმჯობესებელი სამუშაოების მიმდინარეობისას, შესაძლებლობების ნაწილი შეიზღუდება. თუ სტატიით ვერ მოახერხებ ხარვეზის გამოსწორება და შეკითხვის დასმა გსურთ, ჩვენი მხარდაჭერის გუნდი დაგეხმარებათ @FirefoxSupport გვერდის მეშვეობით Twitter-ზე და /r/firefox განყოფილებაში Reddit-ზე.

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

ვრცლად

Is it possible to have 2 windows open with diff toolbar setting?

  • 3 პასუხი
  • 1 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 16 ნახვა
  • ბოლოს გამოეხმაურა cor-el

Hello

i would like Fx to display 2 windows but they have different toolbar settings. Is this possible? how? I have this need, as I have 1 window for a cloud app that i use all the time, and I dont want to see my bookmarks, addon bar etc.. on this as it wastes valuable screenspace.

On the other window, its the normal fx so i want all these toolbars e.g. bookmarks, addon bar etc..

thankyou for your helpf. fx, latest version osx, yosemite, latest

Hello i would like Fx to display 2 windows but they have different toolbar settings. Is this possible? how? I have this need, as I have 1 window for a cloud app that i use all the time, and I dont want to see my bookmarks, addon bar etc.. on this as it wastes valuable screenspace. On the other window, its the normal fx so i want all these toolbars e.g. bookmarks, addon bar etc.. thankyou for your helpf. fx, latest version osx, yosemite, latest

ყველა პასუხი (3)

Do you want to hide all the toolbars including the Navigation Toolbar?

Hi cor-el yes, i want to do this. But the key is for 1 window only. The other FX window to have all the toolbars etc. that i normally have

You can check if this code works for you in the command line of the Browser Console (Firefox/Tools > Web Developer). You need to set the devtools.chrome.enabled pref to true on the about:config page to enable the command line.

You can use the code in an extension like PrefBar (button) or keyconfig (keyboard shortcut). PrefBar allows to set a keyboard shortcut to buttons.


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;
var nt = gB.querySelector("#navigator-toolbox");
var ds = nt.style.getPropertyValue("display") == "none";
nt.style.setProperty("display",ds?"-moz-box":"none","important");