Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

remove google search predictions

more options

can not remove google search predictions (please view all images) I have exhausted all searches and read multiple forums on this matter, simply put; after the latest upgrade (104.0) 64bit you can not remove google search predictions on google search in the firefox web browser . when typing in the firefox google search page... start with the 1 (H) letter and below is a list of un-necessary predictions (see attached image) I have followed and tried many suggested instruction (see attachment) and still nothing changes. If there is no solution for this I will go back to chrome ugg... the ony work around is to use search in the title bar.

can not remove google search predictions (please view all images) I have exhausted all searches and read multiple forums on this matter, simply put; after the latest upgrade (104.0) 64bit you can not remove google search predictions on google search in the firefox web browser . when typing in the firefox google search page... start with the 1 (H) letter and below is a list of un-necessary predictions (see attached image) I have followed and tried many suggested instruction (see attachment) and still nothing changes. If there is no solution for this I will go back to chrome ugg... the ony work around is to use search in the title bar.
Прикріплені знімки екрана

Усі відповіді (1)

more options

Sorry, but Firefox's settings only relate to its own built-in address bar and search bar, they don't modify how Google's own pages work.

To hide or strip elements from web pages, you could use an add-on for removing elements, a user script (through a user script engine add-on), or a user style (custom style rule). For example, this style rule hides the drop-down, although it doesn't fix the styling of the search box:

form[action="/search"] div[jscontroller][jsmodel][jsaction] > div[jscontroller][jsname][jsaction],
form[action="/search"] div[jscontroller][jsmodel][jsdata] > div[jscontroller][jsname][jsaction] {
    display: none !important;
}

You can apply that rule, or others that you find, to Google pages using the Stylus extension:

https://addons.mozilla.org/firefox/addon/styl-us/

Of course, I just came up with that now, so it isn't time tested and because Google does so many weird things in their code, I can't guarantee it will work for everyone or for how long it will work.