Ky sajt do të funksionojë me kufizime, teksa bëjmë mirëmbajtjen e tij për të përmirësuar punën tuaj. Nëse një artikull nuk e zgjidh problemin tuaj dhe dëshironi të bëni një pyetje, kemi bashkësinë tonë të asistencës, e gatshme për t’ju ndihmuar, te @FirefoxSupport në Twitter dhe/r/firefox në Reddit.

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

Why does a google search bar show up when I open a new tab in Firefox version 31?

  • 2 përgjigje
  • 4 e kanë hasur këtë problem
  • 2 parje
  • Përgjigjja më e re nga cor-el

more options

When I open a new tab, a google search bar opens up. Like most people, I hate google, almost as much as I hate microsuck.

When I open a new tab, a google search bar opens up. Like most people, I hate google, almost as much as I hate microsuck.

Krejt Përgjigjet (2)

more options

You can remove the google search bar by clicking the grey square (it has many little squares in it) this will hide the new tab page however this will also remove the sites you have recently been on.

if you want to get rid of google completely there 'may' be 2 search boxes at the top, the big one and then the small on for your search engine (google by default i believe), you can change the search engine or remove that little search bar completely by clicking on the Firefox menu (the symbol with 3 grey lines at the top right) then click on customise and then drag the google search box away, then click exit customisation :)

Ndryshuar nga TechBoss

more options

You can add code to the userContent.css file to hide the search bar on the about:newtab page.


@-moz-document url(about:newtab){
#newtab-margin-top, #newtab-search-container { display:none !important; }
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userContent.css file in the editor window
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css. Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file