你可以先裝ChormEdit這個套件
http://cdn.mozdev.org/chromedit/
之後工具-->Edit User file
在user.js裡輸入
// Instead of annoying error dialog messages, display pages:
user_pref("browser.xul.error_pages.enabled", true);
這個問題我之前問過了,謝謝大大們的回答
另外user.js裡也可以輸入一些加快火狐的字碼如
// Enable pipelining:
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
// Last value in milliseconds (default is 250)
user_pref("nglayout.initialpaint.delay", 0);
//Fast computer Fast connection setting:
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("browser.cache.memory.capacity", 65536);
輸完記得save
最後如果不想裝ChromEdit這個套件,
也可以到火狐的資料夾自訂user.js這個檔案。
注意的是它本來是不存在的,要自己增加。
功能感覺是裡面的設定會優先於pref.js的設定。
也就是你個人喜歡的設定。
ps.我也能回答問題了,奇怪我不是電腦白痴嗎?
火狐還蠻好玩的。