Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

New tab search engine missing?

  • 4 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

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?

所有回复 (4)

more options

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.

more options

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 with the Firefox Address Bar and Change your default search settings in Firefox.

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!

more options

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).

more options

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);
  }
})