/* $Revision$ $Date$ $Author$ lives at: ~/.mozilla/firefox/xxxxxxxx.default/user.js ~/Library/Application\ Support/Firefox/Profiles/xxxxxxxx.default/user.js C:\Documents and Settings\xxxxx\Application Data\Mozilla\Firefox\Profiles\xxxxxxxx.default\user.js */ // disable annoying beep user_pref("accessibility.typeaheadfind.enablesound", false); // remove useless green arrow user_pref("browser.urlbar.hideGoButton", true); // let me see lots of tabs user_pref("browser.tabs.tabMinWidth", 0); // don't show tab close buttons user_pref("browser.tabs.closeButtons", 2); // fix new default one-tab behavior user_pref("browser.tabs.autoHide", true); // http://lifehacker.com/5342636/how-to-fix-annoying-youtube-jumpiness-in-firefox user_pref("browser.sessionstore.interval", 120000); // loop animated gifs only once user_pref("image.animation_mode", "once"); // pipelining per http://egonitron.com/2007/05/25/the-truth-about-the-firefox-pipelining-trick/ user_pref("network.http.pipelining", true); user_pref("network.http.proxy.pipelining", true); // from http://www.mozilla.org/editor/midasdemo/securityprefs.html for google docs // and http://googlesystem.blogspot.com/2006/10/enabling-copy-paste-for-google-office.html user_pref("capability.policy.policynames", "allowclipboard"); user_pref("capability.policy.allowclipboard.sites", "http://docs.google.com http://spreadsheets.google.com/"); user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess"); user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");