為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

Upgrading to Firefox 68 enabled the address bar search dropdown, can I disable this?

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

more options

After an upgrade to FF68 the address bar now has a drop down and it uses my search provider. I previously was able to type a term or website just in the bar itself, no drop down, no clutter.

Is there any way to turn this off? I had previously created a css file in my chrome directory and it was working just fine.

Chrome.css file with the following content in order to hide the addressbar dropdown-menu:

  1. PopupAutoCompleteRichResult {
 display: none;

}

I have also gone into about:config and previously changed settings like url.dropdown.search or whatever it was. Turned off search suggestions and a couple others.

Should I modify or check anything else?

After an upgrade to FF68 the address bar now has a drop down and it uses my search provider. I previously was able to type a term or website just in the bar itself, no drop down, no clutter. Is there any way to turn this off? I had previously created a css file in my chrome directory and it was working just fine. Chrome.css file with the following content in order to hide the addressbar dropdown-menu: #PopupAutoCompleteRichResult { display: none; } I have also gone into about:config and previously changed settings like url.dropdown.search or whatever it was. Turned off search suggestions and a couple others. Should I modify or check anything else?
附加的畫面擷圖

被選擇的解決方法

Why just not set the browser.urlbar.maxRichResults to 0 in about:config?

從原來的回覆中察看解決方案 👍 1

所有回覆 (6)

more options

選擇的解決方法

Why just not set the browser.urlbar.maxRichResults to 0 in about:config?

more options

Excellent that worked like a charm! I had tried several other about:config settings over many different versions, and they seemed to work just fine. Then about 2 or 3 versions ago they all stopped. Someone suggested the css file and that worked up until version 68,

Thank you!

more options

In Firefox 68 with the change from XUL to XHTML, you need this code in userChrome.css.

#urlbar-results { display:none!important; }
more options

Right on! That works too! While the first solution got rid of text and most of the drop down (there was still a tiny white bar showing if that makes sense) This one removed it completely.

Thanks both for taking a look!

more options

Is it possible to remove just the top "Visit" suggestion from the dropdown? This was possible from Firefox 43 and Firefox 67 using:

#PopupAutoCompleteRichResult richlistitem[actiontype="visiturl"]{
  display:none !important;
}

Thanks Luke

more options

This panel uses code in the HTML namespace and this has the code to be placed above this line. You can alternatively use a separate file for this namespace and use @import url(""); This rule also needs to be above the default XUL @namespace line in userChrome.css.

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


@import url("chrome-html.css");

#urlbar-results #urlbarView-row-0 {
  display:none !important;
}

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