// settings for my firefox browser - add double-slashes
// to a line to comment it out (stop it).
//
//

// Speed increases, setup for fast computer with fast connection from these instructions: 
// http://codebetter.com/blogs/darrell.norton/archive/2005/01/28/48720.aspx
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.firstrequest", true); //Default is false
user_pref("network.http.pipelining.maxrequests", 32); //Default is 4
user_pref("network.http.max-connections", 48); //Default is 24
user_pref("network.http.max-connections-per-server", 32); //Default is 8
user_pref("network.http.max-persistent-connections-per-proxy", 16); //Default is 4
user_pref("network.http.max-persistent-connections-per-server", 32); //Default is 2 
user_pref("nglayout.initialpaint.delay", 50);  //default 250
user_pref("plugin.expose_full_path", true);
user_pref("ui.submenuDelay", 0);
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.backoffcount", 5);
user_pref("content.switch.threshold", 750000);
user_pref("browser.cache.memory.capacity", 65536); //Default is 4096(kb)

// Disable the automatic image scaling if  too big for the screen
user_pref("browser.enable_automatic_image_resizing", false);

// Disable Bookmark Icons, otherwise bookmark.html becomes huge
user_pref("browser.chrome.site_icons", false);
user_pref("browser.chrome.favicons", false); 

// tab between just search-forms, instead of all hyperlinks
user_pref("accessibility.tabfocus", 1);

// better bookmark/tab handling
user_pref("browser.tabs.loadFolderAndReplace", false);
user_pref("browser.tabs.loadBookmarksInBackground", true);
user_pref("browser.tabs.loadDivertedInBackground", true);

// stop the annoying downloadmanager "downloads complete" popup
user_pref("browser.download.manager.showAlertOnComplete", false);
// make it always ask for download directory
user_pref("browser.download.useDownloadDir", false);

// opera-like page-rendering
user_pref("browser.display.show_image_placeholders", false);




// Mine!

// homepage. obviously
user_pref("browser.startup.homepage", "http://www.blanketfort.com/exit.html");

// URL to load when browser throbber (top right circle) is clicked, 
// default is http://www.mozilla.org/
// it's currently set for my local(harddrive copy) exitpage for editing ease.
user_pref("browser.throbber.url", "file:///E:/blanketfort.com/exit.html");

// My Extension prefs
user_pref("moztweaks.sidebar.delay", 120);
user_pref("copyurlplus.menus.1.copy", "<a href=\"%URL%\">%TITLE%</a>");
user_pref("copyurlplus.menus.1.label", "Copy URL + Title (A href)");
