通过单击“关闭” X 隐藏标签栏 取消 target="_blank" Mozilla Firefox 默认有一个内建的阻止弹出窗口的过滤器,但当用target="_blank"或无效的target="_new"打开新窗口时它停止网页,为了在同一窗口打开链接,加下面的代码到 f user.js 文件: // disable target="_blank" (open in same window): user_pref("browser.block.target_new_window", true); 关闭图像自动缩放功能 当这一特性打开时, 它会缩小图像以使比图像小的窗口可以容下图像. 为了关闭这以功能加下面的代码到 user.js 文件: // Turn off Automatic Image Resizing: user_pref("browser.enable_automatic_image_resizing", false); 用错误页而不是对话框显示 当联结失败时Mozilla Firefox 默认不是象IE一样显示错误页,而示显示恼人的错误信息,要显示错误页而不是错误信息,加下面的代码到 user.js 文件: // Instead of annoying error dialog messages, display pages: user_pref("browser.xul.error_pages.enabled", true); . 用下载管理器而不是进度窗口 下载文件时, Mozilla Firefox 默认显示进度窗口,如果同时下载多个文件,这些窗口会弄乱您的桌面的,而下载管理器则不会,加下面的代码到 user.js 文件起用
下载管理器: // Instead of download progress windows, use the Sidebar: user_pref("browser.download.openSidebar", true); user_pref("browser.download.useProgressDialogs", false); 用好输入查找功能 Find As You Type功能, Mozilla 新介绍的一个新功能, 有一些适合您需要的隐藏功能, 加下面的代码到ruser.js 文件: // Find As You Type Configuration: // Set this pref to false to disable Find As You Type: user_pref("accessibility.typeaheadfind", true); // If you set this pret to true, typing can automatically start Find As You Type. // If false (default), you must hit / (find text) or '' (find links) before your search. user_pref("accessibility.typeaheadfind.autostart", true); // Set this pref to false if you want Find As You Type to search normal text too: user_pref("accessibility.typeaheadfind.linksonly", true); // Set this pref to true if you require that the link starts with the entered text: user_pref("accessibility.typeaheadfind.startlinksonly", false); // This is the time in milliseconds for the Find As You Type to stop watching for keystrokes: user_pref("accessibility.typeaheadfind.timeout", 3000);
平滑滚动 Mozilla Firefox 0.6 默认有一个平滑滚动的功能,要打开或关闭这一特性,加下面的代码到 Scrollinguser.js 文件: // Smooth Scroll ing (true = on, false = off): user_pref("general.smoothScroll", true); 禁止其它 JavaScript 窗口特性 Mozilla Firefox 有一些选项来决定那些scripts可以在窗口使用,这些选项在“工具”》选项》网页特效》高级,这而的选项没有包含全部的特效,还有其它的一些特效可以使用: // More DOM/JavaScript options // Make sure all pop-up windows are resizable: user_pref("dom.disable_window_open_feature.resizable", true); // Make sure all pop-up windows are minimizable: user_pref("dom.disable_window_open_feature.minimizable", true); // Always display the menu in pop-up windows: user_pref("dom.disable_window_open_feature.menubar", true); // Always display the Navigation Toolbar in pop-up windows: user_pref(