一些网站提供多国语言的版本,您可以按优先顺序选择语言,要改变优先顺序,您不得不知道各国语言的语言代码如瑞典语代码是sv,下面的例子是user.js里的一个。: // Change language to Swedish (default is "en, en-us") user_pref("intl.accept_languages", "sv, en, en-us"); 注意: 选项窗口中有一个request 域用于存放此选项。 选择和复制独立的表格单元 当按下Ctrl 健, 您可以选择表格单元. J您页可以选择多个表格单元 一旦选好后您可以象文本一样复制和粘贴您选择的内容 。 加速网页显示 Mozilla Firefox 默认不显示页面在 250毫秒, 因为它在等待数据. 如果把下面的代码加到 user.js 文件, Mozilla Firefox 立即显示网页, 即使没有完成的数据 它的缺点是在一个慢的机器上由于“回流”使得整个页面的装载时间长了。 // This one makes a huge difference. Last value in milliseconds (default is 250) user_pref("nglayout.initialpaint.delay", 0); 起用线性管道 Pipelining Pipelining 是一个实验中的特性, 它设计来提高网页装载效率, 不幸的是不是所有的网站和代理都支持它, servers and想试用它的话加下面的代码到 user.js 文件: // Enable pipelining: user_pref("network.http.pipelining", true); user_pref("network.http.proxy.pipelining", true); user_pref("network.http.pipelining.maxrequests", 100); 指定保存缓存的位置 为了指定缓存保存在那一个目录, 加代码到 user.js 文件: // Path to Cache folder: user_pref("browser.cache.disk.parent_directory","C:\\Path To Cache"); 记得用2个斜杠做路径的分割符, i如果您使用 Windows, e.g. C:\\Path To Cache 而不是 C:\Path\Path To Cache. 指定内存缓存的用处 一般地, Mozilla Firefox 根据有效内存的多少来判断缓存的用处,为了指定特定数量的内存缓存,加代码到 . user.js 文件: // Specify the amount of memory cache: // -1 = determine dynamically (default), 0 = none, n = memory capacity in kilobytes user_pref("browser.cache.memory.capacity", 4096); 完全禁止内存缓存,用下面的代码, // Disable memory cache: user_pref("browser.cache.memory.enable", false); 访问更多的首选项 许多首选项没有在选项窗口体现. 下面的链接显示了原始的首选项窗口, Chrome://communicator/content/pref/pref.xul. Note that many of the preferences in this window will have no effect in Mozilla Firefox, such as the Quick Launch option. Also, this window will most probably be removed completely in future versions of Mozilla Firefox.