﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ladysign Dev Blog &#187; back-up</title>
	<atom:link href="http://www.ladysign-apps.com/blog/tag/back-up/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ladysign-apps.com/blog</link>
	<description>Girls can code.</description>
	<lastBuildDate>Mon, 01 Feb 2010 09:44:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Firefox backup about:config prefs</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/firefox-backup-aboutconfig-prefs/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/firefox-backup-aboutconfig-prefs/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 08:20:44 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[back-up]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[prefs.js]]></category>
		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=215</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 3 out of 5 stars</p>
<p>Tired of configuring Firefox to it&#8217;s best performance?<br />
It&#8217;s possible to backup your browser settings and add-[......]</p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 3 out of 5 stars</p>
<p>Tired of configuring Firefox to it&#8217;s best performance?<br />
It&#8217;s possible to backup your browser settings and add-on settings and it&#8217;s also possible to add new settings just in the preferences file since it&#8217;s just a *.js file. That means Javascript.</p>
<p>You can find this file on your harddisk:<br />
XP:</p>
<pre class="brush: jscript;">
C:\Documents and Settings\&lt;username&gt;\Application Data\Mozilla\Firefox\Profiles\&lt;profile ID&gt;\
</pre>
<p>Vista:</p>
<pre class="brush: jscript;">
 \Users\&lt;username&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;profile ID&gt;.default\
</pre>
<p>Open the prefs.js file with your favorite dev editor.<br />
From here you can make a backup of this file or add new settings, for example:</p>
<pre class="brush: jscript;">
user_pref(&quot;bidi.support&quot;, 0);
user_pref(&quot;browser.tabs.tabMaxWidth&quot;, 100);
user_pref(&quot;browser.tabs.tabMinWidth&quot;, 50);
user_pref(&quot;layout.word_select.eat_space_to_next_word&quot;, false);
user_pref(&quot;network.http.max-connections&quot;, 96);
user_pref(&quot;network.http.pipelining&quot;, true);
user_pref(&quot;network.http.pipelining.maxrequests&quot;, 16);
user_pref(&quot;network.http.pipelining.ssl&quot;, true);
user_pref(&quot;network.http.proxy.pipelining&quot;, true);
user_pref(&quot;nglayout.initialpaint.delay&quot;, 50);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/firefox-backup-aboutconfig-prefs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
