Firefox: Удаляем лишние пункты из меню

Открываем userChrome.css…

userChrome.css расположен в подкаталоге chrome вашего профиля. userChrome.css предназначен для стилей настройки внешнего вида Mozilla/Mozilla Firefox. В нём вы можете редактировать отображение основных элементов браузера, стили, создать свой собственный стиль Mozill’ы.
Обратите внимание: userChrome.css не существует по умолчанию. После установки Mozilla/Firefox существует userChrome-example.css, содержащий пример этого файла, который вы можете переименовать в userChrome.css

Выбираем что хотим скрыть:

Main Firefox UI elements
menubar > menu Every menu on the menubar (File, Edit, etc)
#toolbar-menubar The entire top toolbar
tab Tabs (browser tabs as well as tabs in dialogs)
#urlbar Location Bar
#searchbar Search Bar
#find-field-container Find Bar
#throbber Activity indicator (throbber)
#bookmarks-menu Bookmarks menu

Firefox context menus
#context-openlink Open Link in New Window
#context-openlinkintab Open Link in New Tab
#context-sep-open line separator
#context-bookmarklink Bookmark This Link…
#context-savelink Save Link As…
#context-sendlink Send Link…
#context-copyemail Copy Email Address
#context-copylink Copy Link Location
#context-sep-copylink line separator
#context-viewimage View Image
#context-copyimage-contents Copy Image
#context-copyimage Copy Image Location
#context-sep-copyimage line separator
#context-saveimage Save Image As…
#context-sendimage Send Image…
#context-setWallpaper Set As Wallpaper…
#context-setDesktopBackground Set As Desktop Background…
#context-blockimage Block Images from…
#context-back Back
#context-forward Forward
#context-reload Reload
#context-stop Stop
#context-sep-stop line separator
#context-bookmarkpage Bookmark This Page…
#context-savepage Save Page As…
#context-sendpage Send Page…
#context-sep-viewbgimage line separator
#context-viewbgimage View Background Image
#context-undo Undo
#context-sep-undo line separator
#context-cut Cut
#context-copy Copy
#context-paste Paste
#context-delete Delete
#context-sep-paste line separator
#context-selectall Select All
#context-sep-selectall line separator
#context-keywordfield Add a Keyword for this Search…
#context-searchselect Search Web for …
#frame-sep line separator
#frame This Frame
#context-sep-properties line separator
#context-viewpartialsource-selection View Selection Source
#context-viewpartialsource-mathml View MathML Source
#context-viewsource View Page Source
#context-viewinfo View Page Info
#context-metadata Properties
#context-sep-bidi line separator
#context-bidi-text-direction-toggle Switch Text Direction
#context-bidi-page-direction-toggle Switch Page Direction

 

Добавляем в UserChrome.css нужные вам пункты для скрытия, на основе примера ниже:

/* Open Link in New Window and open link in private window*/
#context-openlink,
#context-openlinkprivate {
display: none;
}

 

Подсказка:

Scroll to top