To add Metasearch to other versions :
Go to Tools-->Advanced Preferences-->menus
menus.cfg will open.
Search for
Engines{
macros(Google)
and change it to :
Engines{
macros(search_meta)
macros(Google)
Go to Tools-->Advanced Preferences-->macros
macros.cfg will open.
At the bottom, add :
$meta1="
http://www.google.com/search?num=100&query=";
$meta2="
http://search.msn.ch/results.aspx?srch_type=0&FORM=QBHP&geovar=150&q=";
$meta3="
http://search.yahoo.com/bin/search?p=";
$meta4="
http://yq.search.yahoo.com/search?context=";
$meta5="
http://web.ask.com/web?q=";
$meta6="
http://www.gigablast.com/search?q=";
search_meta{
menu = "Metasearch";
$word = prompt("Enter search query:", "Metasearch");
$word == "" ? "" : opennew( $meta2 . $word);
pluginmsg(layers,"OpenURL",$meta3 . $word);
pluginmsg(layers,"OpenURL",$meta4 . $word);
pluginmsg(layers,"OpenURL",$meta5 . $word);
pluginmsg(layers,"OpenURL",$meta6 . $word);
pluginmsg(layers,"OpenURL",$meta1 . $word);
}
Close the browser first.
Then save menus.cfg and macros.cfg to their origin,
(as "all files", not as "text").
Restart, and Metasearch should appear, when you right click on
the search button.
If you want to add other engines to Metasearch,
tell me which ones you need.
Fred