Anonymous 寫:
mozlla firefox:setting successfully optimized 即是說己經install了.不過我覺得跟這個改會比較快
http://forum.moztw.org/viewtopic.php?t=4913&highlight=about%3Acon
建議一般使用者使用 Mozilla Optimizer 就好
調整的選項也比較保守
也比較方便安全
Browser Selection 勾選 Mozilla Firefox / Mozilla Firebird
Actions 勾選 Boost / Optimize Pageloading
Mode 勾選 Apply
按下 Apply 會出現對話方塊告訴你調整成功
注意 這必須在 Firefox 關閉的狀態下使用
其實大部分老手應該都知道
這個 Optimizer 所做的不過是在 user.js 加入下面這幾行
有些選項是會有後遺症的 可能造成畫面顯示不正確
並不是一味地快就是好
這也是這些選項並沒有被設定為預設值的原因
代碼:
user_pref("nglayout.initialpaint.delay", 100);
user_pref("content.notify.ontimer", true);
user_pref("content.notify.interval", 100000);
user_pref("content.notify.backoffcount", 5);
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.max-connections", 32);
user_pref("network.http.max-connections-per-server", 8);
user_pref("network.http.max-persistent-connections-per-proxy", 4);
user_pref("network.http.max-persistent-connections-per-server", 2);