把FireFox(1.0.7)Windows增强版的google设置为中文

默认情况下,从搜索栏中键入关键词,查询所得的结果为英文的。这不太适应我的习惯。我要改!
通过查看about:config和search.rdf文件,发觉关键在于google.src文件。
原始的google.src文件,在%installpath%/searchplugins下:
# Mozilla/Google plug-in by [email protected]

   name="Google"
   description="Google Search"
   method="GET"
   action="http://www.google.com/search"
   update="http://www.google.com/mozilla/google.src"
   updateCheckDays=1  
   queryEncoding="utf-8"
   queryCharset="utf-8"
>







    browserResultType="result"
    charset = "UTF-8"
    resultListStart=""
    resultListEnd=""
    resultItemStart=""
    resultItemEnd=""
>

更改后的google.src:
# Mozilla/Google plug-in by [email protected]

   name="Google"
   description="Google Search"
   method="GET"
   action="http://www.google.com/search"
   update="http://www.google.com/mozilla/google.src"
   updateCheckDays=1  
   queryEncoding="gb2312"
   queryCharset="gb2312"
>











    browserResultType="result"
    charset = "gb2312"
    resultListStart=""
    resultListEnd=""
    resultItemStart=""
    resultItemEnd=""
>


关键是把所有的utf-8都改为了gb2312。并添加了如下内容:





你可能感兴趣的:(系统配置,google,firefox,windows,input,mozilla,search)