Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Learn More

how do I remove search from address bar?

  • 1 përgjigje
  • 2 e kanë hasur këtë problem
  • 30 parje
  • Përgjigjja më e re nga 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?

Ndryshuar nga concerneduser2

Krejt Përgjigjet (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;}