How to Remove Firefox menu items

How to Remove Firefox menu items

Are there menu items -- for example, Help -- that you never use? If so, you can easily make them disappear. To remove the Help menu, add this to userChrome.css:

/* Remove the Help menu */
menu[label="Help"] {
display: none !important; }

You can remove any of the other menus as well. Use the same syntax as above and substitute its name (File, Edit, View, History, Bookmarks or Tools). So, for example, to remove both the Help and Tools menu, you'd add these lines to userChrome.css:

/* Remove the Help and Tools menus */
menu[label="Tools"], menu[label="Help"] {
display: none !important; }


0 comments:

Post a Comment

 
Worlds best tips and tricks website