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!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

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.