The Computer Oracle

How can I customize Firefox's search engines?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: The Builders

--

Chapters
00:00 How Can I Customize Firefox'S Search Engines?
02:25 Accepted Answer Score 4
03:49 Thank you

--

Full question
https://superuser.com/questions/674083/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#firefox #search #searchengines

#avk47



ACCEPTED ANSWER

Score 4


This is off-topic, but thanks for the anonymous search engine DuckDuckGo.

You can use this opensearch Mycroft Project.

It has everything already created just enter the values into textbox and and you have the XML code.

You can also submit your website search engine here.

OR

Here are the steps:

  1. Need to create an XML file which will contain information about search engine like ShortName, Description, URL etc. Example of XML file here

  2. Give a name to that XML file and put it here:

%APPDATA%\Mozilla\Firefox\Profiles\XXXXXXXX.default\searchplugins

or here:

%PROGRAM_FILES%\Mozilla Firefox\searchplugins

  1. Modifying FireFox preferences file:

%APPDATA%\Mozilla\Firefox\Profiles\XXXXXXXX.default\prefs.js

Simply add/modify this line:

user_pref("browser.search.selectedEngine", "engine_name");

No needing to modify SQLite database file manually. New search engine will be added automatically after restarting FireFox.

Source