搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

how to customize UI in firefox?

  • 1 回覆
  • 1 有這個問題
  • 1 次檢視
  • 最近回覆由 cor-el

more options

Where i can find more into about that - propably using userchrome.css file. I want to remove from "hamburger menu" - content blocking (i have this in preferences), logins and passwords (i use keepassxc ), customize , and from urlbar as a first search with google ( I have separate address bar and url bar (browser.urlbar.autofill is set to false) ).

Where i can find more into about that - propably using userchrome.css file. I want to remove from "hamburger menu" - content blocking (i have this in preferences), logins and passwords (i use keepassxc ), customize , and from urlbar as a first search with google ( I have separate address bar and url bar (browser.urlbar.autofill is set to false) ).

所有回覆 (1)

more options

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#appMenu-tp-button, 
#appMenu-tp-separator,
#appMenu-logins-button,
#appMenu-customize-button,
#urlbarView-row-0 {
 display:none!important;
}