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

How do I change the search box in Firefox to be google.co.nz as a default?

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

more options

Currently whenever I search anything in my google search box there is no long a 'show pages from New Zealand' option.

Is there a way to change the default search to google.co.nz instead of google.com to overcome this problem?

Currently whenever I search anything in my google search box there is no long a 'show pages from New Zealand' option. Is there a way to change the default search to google.co.nz instead of google.com to overcome this problem?

被采纳的解决方案

Select the language and install it :

http://mycroft.mozdev.org/google-search-plugins.html


thank you

Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

定位到答案原位置 👍 0

所有回复 (3)

more options

选择的解决方案

Select the language and install it :

http://mycroft.mozdev.org/google-search-plugins.html


thank you

Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

more options

Awesome! Thanks so much!

more options

You can also modify the search engine for the about:home page.

  1. Open the about:home page in a tab
  2. Open the Scratchpad via "Firefox/Tools > Web Developer > Scratchpad" (Shift+F4)
  3. Paste the code in the Scratchpad window
  4. Use "Execute > Run" to run the code
  5. Close and restart Firefox to make the change effective
localStorage["search-engine"]="{\"name\":\"Google\",\"searchUrl\":\"http://www.google.co.nz/search?q=_searchTerms_&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a\"}";

You can inspect the current search engine via this code in the Scratchpad window with the about:home page on display.
Copy the value via Ctrl+A and Ctrl+C to the clipboard.

prompt(T="localStorage[\"search-engine\"] = \n\""+JSON.stringify(localStorage["search-engine"]),T);

由cor-el于修改