Join the AMA (Ask Me Anything) with Firefox leadership team to talk about Firefox priorities in 2024. Mark your calendar! Thursday, June 13, 17:00 - 19:00 UTC.

تلاش سپورٹ

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

About:config option to enable or disable Menu Bar?

  • 2 جواب دیں
  • 8 میں یہ مسئلہ ہے
  • 5 دیکھیں
  • آخری جواب بذریعہ cor-el

more options

I am looking update my workstations to ESR 45 and in the Mozilla.cfg file add a line to turn on the Menu Bar for all devices. Is their an option I can use to enable the Menu Bar?

I am looking update my workstations to ESR 45 and in the Mozilla.cfg file add a line to turn on the Menu Bar for all devices. Is their an option I can use to enable the Menu Bar?

تمام جوابات (2)

more options

Mike Kaply's blog send you to here in the code to make changes to the menu bar however please see this article for more information: https://mike.kaply.com/2015/08/25/using-hidden-ui-in-the-cck2/

more options

You can't hide or show the Menu bar via a pref on the about:config page. It isn't easy to make the Menu bar show as this is done via by setting an inactive attribute via JavaScript that set the height to 0px as you can see via the DOM Inspector.

Note that you can run privileged JavaScript via mozilla.cfg, but I do not know what you would need to make the Menu bar visible.

This works in the Browser Console:

var menubar = document.getElementById("toolbar-menubar");
setToolbarVisibility(menubar, true);
//setToolbarVisibility(menubar, false);

cor-el کی جانب سے میں ترمیمکی گئ