由于browser.urlbar.unifiedcomplete
首选项已消失,因此我尝试使用其他首选项,但无法摆脱恼人的“ Visit ...”建议。
这是我找到的解决方法:
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
结果:
时尚的
您也可以使用“时尚”来实现。
安装时尚
安装网址栏调整项-删除访问/搜索和滚动栏样式
资料来源:http : //www.ghacks.net/2015/12/21/how-to-remove-visit-in-firefoxs-address-bar/