Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

FF65 - Can't turn off address bar suggestions

  • 9 답장
  • 1 이 문제를 만남
  • 14 보기
  • 최종 답변자: Thorzdad

more options

After updating to Firefox 65 (Mac), there is now this enormous green drop-down that appears whenever I start typing in the address bar, and I cannot turn this thing off.

I've looked in Preferences > Privacy & Security > Address Bar, and all the selections there are unchecked. Search > Default Search Engine > Provide Search Selections is also unchecked.

Is there something in about:config I need to toggle? Or will I have to edit my userChrome.css to turn this off?

Thanks!

After updating to Firefox 65 (Mac), there is now this enormous green drop-down that appears whenever I start typing in the address bar, and I cannot turn this thing off. I've looked in Preferences > Privacy & Security > Address Bar, and all the selections there are unchecked. Search > Default Search Engine > Provide Search Selections is also unchecked. Is there something in about:config I need to toggle? Or will I have to edit my userChrome.css to turn this off? Thanks!

선택된 해결법

Hello Thorzdad2,

You could indeed try to add this to your userChrome.css file :

#PopupAutoCompleteRichResult {

  display: none!important;

}

https://www.userchrome.org/how-create-userchrome-css.html

'Hope that does what you want ......

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (9)

more options

선택된 해결법

Hello Thorzdad2,

You could indeed try to add this to your userChrome.css file :

#PopupAutoCompleteRichResult {

  display: none!important;

}

https://www.userchrome.org/how-create-userchrome-css.html

'Hope that does what you want ......

more options

Sorry for not responding sooner. I've been neck-deep in a project this week. I was just now able to apply your fix, and can confirm that it works wonderfully.

Many thanks, McCoy!

more options

My pleasure - I'm glad it works for you  !

more options

Well, the 68.0 update broke McCoy's fix. The gawdawful acid-green url-bar dropdown is back with a vengeance.

Why isn't there some simple/obvious way to disable this thing? Like a True/False setting in about:config? If it's in there, it certainly isn't easily discoverable. Or, a button in the Search section of the Preferences?

more options

Sorry to hear that the problem is back ....

Would you try this please :

Type in the address bar about:config and press Enter (promise to be careful, if asked)

Type in the search bar and look for the preference :

browser.urlbar.maxRichResults and set its value to 0 (= zero)

Then close and restart Firefox.

Note that setting the preference to "0" effectively disables the Location Bar dropdown entirely.

If this is not what you want, chenge the value back to its default
(= 10).

In that case you could check some other preferences, when you type in the search bar browser.urlbar.

more options

Thank you, McCoy! That worked. There's still a teeny, tiny sliver of the dropdown, but it's pretty unnoticeable.

more options

Thorzdad said

Thank you, McCoy! That worked. There's still a teeny, tiny sliver of the dropdown, but it's pretty unnoticeable.

I'm glad that you can live with that "teeny, tiny sliver" .....

more options

In Firefox 68 you can use this code in userChrome.css for the address bar drop-down list.

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

Thank you, cor-el. That worked perfectly.