搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

how do I remove search from address bar?

  • 1 个回答
  • 2 人有此问题
  • 30 次查看
  • 最后回复者为 cor-el

more options

My firefox just updated and is now forcing me to have a default search engine connected to my address bar. I never used the address bar to search and don't want to start now. I've tried all the settings and it doesn't give me an option to remove this new feature. It gives the option to change which default search engine is connected to the address bar, but it doesn't give NONE as an option, or let me set it up so that the default search engine is only used for the search bar and not the address bar. I also can't restore my previous version. Is there any way to resolve this issue?

My firefox just updated and is now forcing me to have a default search engine connected to my address bar. I never used the address bar to search and don't want to start now. I've tried all the settings and it doesn't give me an option to remove this new feature. It gives the option to change which default search engine is connected to the address bar, but it doesn't give NONE as an option, or let me set it up so that the default search engine is only used for the search bar and not the address bar. I also can't restore my previous version. Is there any way to resolve this issue?

由concerneduser2于修改

所有回复 (1)

more options

You can set keyword.enabled to false on the about:config page to disable searching via the address bar.

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.


You can remove the search engine bar in the address bar drop down list by setting this pref to false on the about:config page.

  • browser.urlbar.oneOffSearches = false

You can use code in userChrome.css remove all suggestions from the address bar drop down list.

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 */

/* remove all items from the urlbar drop down */
#PopupAutoCompleteRichResult {display:none !important;}