Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

New tab search engine missing?

  • 4 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi 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?

Tất cả các câu trả lời (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);
  }
})