É possível obter o antigo sistema de sugestão no Firefox 48.0?

11

Com a nova atualização 48.0, o Firefox mostra o domínio como primeiro resultado mais uma vez, mas desta vez mudando browser.urlbar.unifiedcomplete não ajuda. Então deixe-me perguntar mais uma vez:

É possível remover a nova sugestão de domínio, por exemplo, "Visita ebay.co.uk ”? Exemplo de captura de tela:

visit screenshot

Acompanhamento:

Eu encontrei este tópico do reddit com links para um relatório do Bugzilla , e não há opção para desativá-lo.

We spent time working on improving the awesomebar, and we think we did. You don't like what we did, that's fine, we accept your opinion, but we are not going to throw away all the work just because of that.

Relacionados:

É possível recuperar o antigo sistema de sugestões no Firefox 43.0?

    
por Peter 09.08.2016 / 12:16

1 resposta

9

Como a preferência browser.urlbar.unifiedcomplete acabou, tentei brincar com as outras preferências, mas não consegui me livrar da irritante sugestão "Visite ...".

Aqui estão as soluções que encontrei:

userChrome.css

Isso é o que estou usando e funciona bem para mim.

If you want to list 10 entries, change 'browser.urlbar.maxRichResults' in about:config to 11 and then use the following lines in 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;
}

If you don't already have a userChrome.css file, you'll also need to add the following lines at the top of the file:

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

Fonte: link

Resultado:

Elegante

VocêtambémpodeconseguirissousandooestiloStylish.

  1. InstallStylish

  2. Install the URL Bar Tweaks - Remove Visit/Search & Scroll bar style

Fonte: link

    
por 09.08.2016 / 20:47