Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Remove default visit link from awesome bar.

  • 2 trả lời
  • 1 gặp vấn đề này
  • 7 lượt xem
  • Trả lời mới nhất được viết bởi Naby

more options

Hi all,

This is the same as this archived thread: https://support.mozilla.org/en-US/questions/1099829. In short: The Visit url that appears in the awesome bar when typing a webpage is highly annoying and I want it gone, as it insist of giving me a URL that I've only visited by accident, and is actually wrong...

This archived thread lists this as asnwer: 1 Go to about:config in Firefox 2 Click the I'll be careful button 3 Locate the browser.urlbar.unifiedcomplete boolean 4 Change the value to false But, the browser.urlbar.unifiedcomplete boolean mentioned in that thread's answer doesn't show in my Firefox (66.0.1). What do I need to amend instead? I can't get rid of this Visit link any other way, I've tried all the suggestions for removing history, and nothing works...

Thank you in advance.

Hi all, This is the same as this archived thread: https://support.mozilla.org/en-US/questions/1099829. In short: The Visit url that appears in the awesome bar when typing a webpage is highly annoying and I want it gone, as it insist of giving me a URL that I've only visited by accident, and is actually wrong... This archived thread lists this as asnwer: 1 Go to about:config in Firefox 2 Click the I'll be careful button 3 Locate the browser.urlbar.unifiedcomplete boolean 4 Change the value to false But, the browser.urlbar.unifiedcomplete boolean mentioned in that thread's answer doesn't show in my Firefox (66.0.1). What do I need to amend instead? I can't get rid of this Visit link any other way, I've tried all the suggestions for removing history, and nothing works... Thank you in advance.

Giải pháp được chọn

In current Firefox releases you need to use code in userChrome.css remove the visit line.

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

#PopupAutoCompleteRichResult richlistitem:first-of-type[actiontype="visiturl"]{display:none !important}
Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (2)

more options

Giải pháp được chọn

In current Firefox releases you need to use code in userChrome.css remove the visit line.

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

#PopupAutoCompleteRichResult richlistitem:first-of-type[actiontype="visiturl"]{display:none !important}
more options

Thank you, that did the trick. I hadn't seen that question and answer in my search.