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

Search Engines under address bar

  • 2 个回答
  • 8 人有此问题
  • 5 次查看
  • 最后回复者为 ekna

more options

Why in firefox beta for android do all six search engines fill out what I type in the address bar. ex. if I type "firefox help" in the address bar the below comes up under the address bar as I type. google: firefox help yahoo: firefox help bing: firefox help amazon.com: firefox help wikipedia: firefox help twitter: firefox help

Can i disable this autofill search engine feature? (not eye pleasing) Can I just delete these searh engines all together?

Thanks for ideas

Why in firefox beta for android do all six search engines fill out what I type in the address bar. ex. if I type "firefox help" in the address bar the below comes up under the address bar as I type. google: firefox help yahoo: firefox help bing: firefox help amazon.com: firefox help wikipedia: firefox help twitter: firefox help Can i disable this autofill search engine feature? (not eye pleasing) Can I just delete these searh engines all together? Thanks for ideas

所有回复 (2)

more options

Unless you have enabled the Google search suggestions option no data is transferred to the search engine. The text just provides context as to what selecting that search engine will do.

We are looking into ways to make installing and removing search engines from the browser simpler. Though for right now one can only add and disable and change the default search engine.

more options

You can still disable the search engines if you have root access to your device. Specifically, you need to pull and modify the file search.json. On my device, I have:

adb pull /data/data/org.mozilla.firefox/files/mozilla/rbn69ru0.default/search.json

Now, by default, this file doesn't format everything nicely, so you can use something like

http://jsonformat.com

In order to clean things up. In any case, you'll see bits such as

              "_id": "[app]/bing.xml",
              "_name": "Bing",
              "_hidden": false,
              "description": "",
              "__searchForm": "http://www.bing.com",

You need to take the "_hidden" flag and change it to true. Do this for all of the search engines to hide all of them. Or, frankly, just delete everything under engines. Then, upload the file back and restart firefox with a command like:

adb push search.json /data/data/org.mozilla.firefox/files/mozilla/rbn69ru0.default/

Until an application restart, the changes won't be seen.

As a slight editorial note, it's dumb that we have to do this by hand. Either we should be able to disable things under Settings->Customize->Search settings or we should have some way of turning things off in about:config. While I understand that removing menu items that cause too many support issues, completely removing the option even from about:config is counterproductive.