Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

Caută ajutor

Atenție la excrocheriile de asistență. Noi nu îți vom cere niciodată să suni sau să trimiți vreun SMS la vreun număr de telefon sau să dai informații personale. Te rugăm să raportezi activitățile suspecte folosind opțiunea „Raportează un abuz”.

Află mai multe

New tab search engine missing?

  • 4 răspunsuri
  • 1 are această problemă
  • 30 de vizualizări
  • Ultimul răspuns dat de cor-el

mai multe opțiuni

So, I use Yahoo for my default homepage, and its search engine on empty new tab pages. However, I noticed this morning when doing a search from an empty new tab page it's searching directly using Google. I went to my options and then to search options. Under Default Search Engine, I do not see Yahoo!. What's the deal?

So, I use Yahoo for my default homepage, and its search engine on empty new tab pages. However, I noticed this morning when doing a search from an empty new tab page it's searching directly using Google. I went to my options and then to search options. Under Default Search Engine, I do not see Yahoo!. What's the deal?

Toate răspunsurile (4)

mai multe opțiuni

hi, you can install the yahoo search provider from https://addons.mozilla.org/firefox/addon/yahoo-search-addon/ if you're inclined to do so.

mai multe opțiuni

Hello,

You can choose from different search providers such as Google, Yahoo or Bing when you search the Internet using Firefox. For more information, see the articles Search the Web on Firefox and Manage Firefox search settings.

If you want to change the default search engine that Firefox uses, use one of these methods:

  • Click the menu button New Fx Menu and choose either Options (on Windows) or Preferences (on Mac or Linux), then select the Search settings panel.
  • Click on the magnifying glass icon in the Search bar, then click on Change Search Settings, as shown here:
search prefs 34

In the Search settings panel that opens, select a different search engine from the drop-down menu:

Fx47DefaultSearchEngine

Let us know if this helps!

mai multe opțiuni

FireFoxFan1 said

What's the deal?

More users have reported this since yesterday and a bug report has been filed :

https://bugzilla.mozilla.org/show_bug.cgi?id=1443957

Would you try this please : 3-bar menu (or 'Tools') => Options => Search Under 'One-Click Search Engines' - at the bottom click 'Restore Default Search Engines' Does that bring back the search engines, including Yahoo  ? Probably not .....

See this thread : https://support.mozilla.org/en-US/questions/1208139

May I suggest that you read every post in this thread - there are some temporary workarounds mentioned and 'things to try'.

You'll find Philipp's post there too (excellent solution till this is fixed).

mai multe opțiuni

You can save the XML file of the search engine via this special builtin page:

  • chrome://browser/locale/searchplugins/

See:


You can open the Browser Console.

  • "3-bar" menu button or Tools -> Web Developer

Paste the JavaScript code posted below in the command line You need to set devtools.chrome.enabled to true on the about:config page to enable the command line

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.


/* load search engine via local XML file */
var fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);
fp.init(window,"Open file",Ci.nsIFilePicker.modeOpen);
fp.appendFilters(Ci.nsIFilePicker.filterXML);
fp.open((rv) => {
  if (rv == Ci.nsIFilePicker.returnOK) {
   var path = fp.file.path;
   var url = OS.Path.toFileURI(path);
   Services.search.addEngine(url, null, null, false);
  }
})