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
結果:

スタイリッシュ
Stylishを使用してこれを実現することもできます。
Stylishをインストールする
URLバーツイークのインストール-訪問/検索とスクロールバースタイルの削除
出典:http : //www.ghacks.net/2015/12/21/how-to-remove-visit-in-firefoxs-address-bar/