browser.urlbar.unifiedcomplete
선호도가 사라졌기 때문에 다른 선호도를 가지고 놀았지만 성가신 "방문 ..."제안을 제거 할 수 없었습니다.
내가 찾은 해결 방법은 다음과 같습니다.
userChrome.css
이것은 내가 사용하고 있으며 나에게 잘 작동합니다.
10 개의 항목을 나열하려면 about : config에서 'browser.urlbar.maxRichResults'를 11로 변경 한 후 userChrome.css에서 다음 행을 사용하십시오.
#PopupAutoCompleteRichResult richlistitem:first-of-type[actiontype="searchengine"],
#PopupAutoCompleteRichResult richlistitem[actiontype="visiturl"] { visibility:collapse !important; }
#PopupAutoCompleteRichResult .autocomplete-richlistbox {
height: auto !important;
max-height: calc(31px * 10) !important;
}
userChrome.css 파일이없는 경우 파일 맨 위에 다음 줄을 추가해야합니다.
/* Do not remove the @namespace line -- it's required for correct functioning */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
출처 : http://www.ghacks.net/2016/08/01/firefox-48-release/#comment-3950665
결과:
세련된
Stylish를 사용하여이 작업을 수행 할 수도 있습니다.
세련된 설치
URL 바 조정 설치 -방문 / 검색 및 스크롤 바 스타일 제거
출처 : http://www.ghacks.net/2015/12/21/how-to-remove-visit-in-firefoxs-address-bar/