Welcome to Firefox for Android Add-ons.
Add extra features and styles to make Firefox for Android your own.
CloseReviews for Hide Menubar
328 reviews for this add-on
Rated 5 out of 5 stars
Great Addon!
Q1: I have installed HideMenubar 3.6, and restarted Firefox, but menubar is still there, it seems not working?
Ans: Right-click on menubar -> Uncheck the "Menu Bar".
This helped a lot! Might be better to hide the menu bar as default.
Rated 5 out of 5 stars
Great Addon!!!
PS: If Menu doesn't hide:
Right-click on menubar -> Uncheck the "Menu Bar".
Rated 5 out of 5 stars
Great space saving.
This review is for a previous version of the add-on (3.6.20100512).Rated 1 out of 5 stars
Q1: I have installed HideMenubar 3.6, and restarted Firefox, but menubar is still there, it seems not working?
Ans: Right-click on menubar -> Uncheck the "Menu Bar".
---
When I right-click the menu bar, there is no item called "Menu Bar".
Rated 5 out of 5 stars
I'm the developer of Personal Menu: https://addons.mozilla.org/en-US/firefox/addon/3895/
As the description in Developer Comments in Personal Menu, would you offer me the permission of including Hide Menubar in Linux version of Personal Menu?
Welcome to include my code.
Rated 5 out of 5 stars
Works perfecty with Firefox 3.6.3. Oh, how I missed this!
This review is for a previous version of the add-on (3.6.20100218).Rated 1 out of 5 stars
Doesn't actually work.
Using the NASA Night Launch theme, if that matters.
Otherwise I'm doing nothing special with that area. I moved the location bar up to the menu, but I moved it out and re-tested and can confirm that this addon doesn't do anything.
Perhaps it's because I've remapped accesskeys to use alt?
Rated 5 out of 5 stars
Скажу кратко, СПАСИБО!
Чтобы после установки заработало, убирите галочку с "Панель меню"...
Rated 5 out of 5 stars
Perfect. I use it for Firefox and Thunderbird. The version for Thunderbird can at this time be found through the link by the author: http://forums.mozillazine.org/viewtopic.php?t=766485)
This review is for a previous version of the add-on (3.6.20100218).Rated 5 out of 5 stars
O kurczę odrazu po napisaniu poprzedniego tekstu, doszedłem co i jak. Poprostu miałem zaznaczony menu bar w opcjach FF po odznaczeniu pokazuje się tylko po wciśnięciu ALT-a.
This review is for a previous version of the add-on (3.6.20100218).Rated 5 out of 5 stars
Niestety u mnie ten dodatek nie działa. Nie mam pojęcia dlaczego w poprzedniej wersji przeglądarki działał jak trzeba. Ale w wersji Firefox-a 3.6 nie działa wogóle. Ktoś może wie dlaczego? Ocenę daję najwyższą bo to bardzo dobra rzecz, tylko żeby jeszcze działało na najnowszej wersji FF
This review is for a previous version of the add-on (3.6.20100218).Rated 5 out of 5 stars
Not necessary for windows but it is an essential extension for linux!
This review is for a previous version of the add-on (3.6.20100218).Rated 5 out of 5 stars
Great extension. It makes things more compact. I use it with the NEW Glasser extension.
@Casper A: Maybe we want the convenience of having the menu hidden but quickly and easily accessible just by clicking ALT. If you don't see any use in it, then don't get it but don't be an idiot and 1-star it.
Rated 5 out of 5 stars
Awesome - thanks!
This review is for a previous version of the add-on (3.6.20100218).Rated 5 out of 5 stars
Great. Does what it says.
@casper a: Use your head before rating. You cannot hide the menubar by default. This extensions adds it to the view menu.
Rated 5 out of 5 stars
The extension works great. However, if the right Alt works as AltGr in your keyboard layout, then the right Alt is interpreted as Ctrl+Alt by Windows and the browser. If you feel that AltGr (right Alt) should show/hide the manubar as well as your left Alt, then you should alter the event listener (in hidemenubar.xul) accordingly:
// implement: press "alt" key to control the menubar display
window.addEventListener("keydown",
function(event) {
if (toolbar.autohide) {
if ((event.keyCode == KeyEvent.DOM_VK_ALT) && !event.shiftKey && !event.metaKey) {
toolbar._inactive = toolbar.inactive;
toolbar._altKey = true;
return;
} else if (event.keyCode != KeyEvent.DOM_VK_CONTROL) {
delete toolbar._inactive;
delete toolbar._altKey;
}
}
}
, true);
window.addEventListener("keyup",
function(event) {
if (toolbar.autohide && toolbar._altKey) {
if ((event.keyCode == KeyEvent.DOM_VK_ALT) && !event.shiftKey && !event.metaKey) {
toolbar.inactive = !toolbar._inactive;
} else if (event.keyCode != KeyEvent.DOM_VK_CONTROL) {
delete toolbar._inactive;
delete toolbar._altKey;
}
}
}
, true);
Rated 4 out of 5 stars
you mean Firefox 3.6 has the ability of AUTOhiding the menubar?
This review is for a previous version of the add-on (3.6.20100218).Rated 3 out of 5 stars
Firefox 3.6 has this feature already...why is an addon necassary?
This review is for a previous version of the add-on (3.6.20100218).Rated 5 out of 5 stars
Works great! Small and simple extension.
This review is for a previous version of the add-on (3.6.20100218).Rated 4 out of 5 stars
Sweet. Thanks
This review is for a previous version of the add-on (3.6.20100218).To create your own collections, you must have a Mozilla Add-ons account.