Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

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.