Firefoxで検索エンジンの設定
Firefoxの検索バーからの検索が,defaultで100件になるようにしたい.
■参考
http://www.google.com/search?hl=ja&lr=&adsafe=off&safe=off&num=100&q=
このようなURLになるようにしたい.
■現状
http://www.google.co.jp/search?q=a&lr=lang_ja&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:ja:official&client=firefox-a
こんなURLになっている.
■設定方法
- C:\Program Files\Mozilla Firefox\searchplugins\google-jp.xml を google.xml としてコピー
- 下記を参考にして書き換える.
<ShortName>All Google</ShortName>
<Description>All Google Search</Description>
<Url type="application/x-suggestions+json" method="GET" template="http://suggestqueries.google.com/complete/search?output=firefox&client=firefox&qu={searchTerms}"/><!-- suggestqueries.google.co.jp doesn't exist and suggestqueries.google.com can handle Japanese too -->
<Url type="text/html" method="GET" template="http://www.google.com/search">
<Param name="q" value="{searchTerms}"/>
<Param name="num" value="100"/>
<Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/>
<!-- Dynamic parameters -->
<Param name="hl" value="ja"/>
</Url>
<SearchForm>http://www.google.com/</SearchForm>
■説明
- http://www.mozilla-japan.org/support/firefox/2.0/tutorials/search 様々なWeb検索機能
- http://keijisaito.info/arc/search/cs_set_firefox.htm Firefoxの検索バーをカスタマイズする方法
このへんにはURLの変更方法がのってなかったので,自分で探してみた.
Last modified: 2007-07-02