Firebird user.js Tweaks
My aggregated collection of user.js tweaks, aggregated from texturizer and others.
// Stop reusing active windows:
user_pref("advanced.system.supportDDEExec", false);// Disable tab bar autohide feature:
user_pref("browser.tabs.autoHide", false);// Turn off Automatic Image Resizing:
user_pref("browser.enable_automatic_image_resizing", false);// Instead of annoying error dialog messages, display pages:
user_pref("browser.xul.error_pages.enabled", true);// Instead of download progress windows, use the Sidebar:
user_pref("browser.download.openSidebar", true);
user_pref("browser.download.useProgressDialogs", false);// Smooth Scrolling (true = on, false = off):
user_pref("general.smoothScroll", true);// 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("dom.disable_window_open_feature.location", true);// Change to normal Google search:
user_pref("keyword.URL", "http://google.com/search?btnG=Google+Search&q=");// Enable pipelining:
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 100);