How to Remove Firefox menu items
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