<?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; about:config</title>
	<atom:link href="http://www.ladysign-apps.com/blog/tag/aboutconfig/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ladysign-apps.com/blog</link>
	<description>Girls can code.</description>
	<lastBuildDate>Mon, 12 Dec 2011 16:58:15 +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>Tweaks for Firefox</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/tweaks-for-firefox/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/tweaks-for-firefox/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 08:11:59 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[about:config]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[tweaks]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=210</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 2 out of 5 stars</p>
<p>Mozilla Firefox is probably the program I daily use the most. The following tweaks are quiet handy, and that&#8217;s the [......]</p><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/browsers/tweaks-for-firefox/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 2 out of 5 stars</p>
<p>Mozilla Firefox is probably the program I daily use the most. The following tweaks are quiet handy, and that&#8217;s the reason why I want to share these settings with you.<br />
To configure Firefox, all you need to do is type in your browsers addressbar:</p>
<pre class="brush: jscript; title: ;">
about:config
</pre>
<p>(If you enter the config screen for the first time, Firefox will prompt you, if you are sure by making this settings.) From this screen you can filter on properties.<br />
(See my related blog post: <a href="http://ladysign-apps.com/blog/archives/5">How to make Firefox faster</a>)</p>
<p><strong>Number of suggestions</strong><br />
Change the number of suggestions of the location bar dropdown list. Default = 12. I changed this to 5. But to disable it, you can specify -1 as value.</p>
<pre class="brush: jscript; title: ;">
browser.urlbar.maxRichResults = 5
</pre>
<p><strong>Width of the browser tabs</strong><br />
Change the size of the browser tabs. Default they are quiet huge: 250px width. I changed the size to 100px.</p>
<pre class="brush: jscript; title: ;">
browser.tabs.tabMinWidth = 50
browser.tabs.tabMaxWidth = 100px
</pre>
<p><strong>Select words on double click</strong><br />
When you double click on a word in Firefox, Firefox selects the word plus an extra<br />
space. This can be annoying since you want to copy the word only not<br />
the extra space. So I set this value to false.</p>
<pre class="brush: jscript; title: ;">
layout.word_select.eat_space_to_next_word  = false
</pre>
<p><strong>Spell checker on all fields</strong><br />
Enable spell checking in all text fields. The default spell checking function only checks for multiline text boxes (default = 1). You can set this for single line inputboxes as well: 2,<br />
Setting to 0, disables the spell checker</p>
<pre class="brush: jscript; title: ;">
layout.spellcheckDefault = 2
</pre>
<p><strong>No Javascript popups</strong><br />
When you don&#8217;t like javascript popup&#8217;s you can let Firefox open them<br />
as new tabs.  (default = 2). By setting this to 1, no new windows will be opened. By setting it to 0 the new pop-ups will be opened in a new tab.</p>
<pre class="brush: jscript; title: ;">
browser.link.open_newwindow.restriction = 0
</pre>
<p><strong>Make it faster</strong><br />
Set bidi.support = 0. You&#8217;ll probably never need it, so reduce the number of potential bugs and security issues by disabling it.</p>
<pre class="brush: jscript; title: ;">
bidi.support = 0
</pre>
<p>Set network.prefetch-next = false to prevent random prefetching of webpages which means wasting CPU cycles and bandwidth, as well as subtle privacy and security issues. <a href="http://kb.mozillazine.org/Network.prefetch-next" target="_blank">http://kb.mozillazine.org/Network.prefetch-next</a></p>
<pre class="brush: jscript; title: ;">
network.prefetch-next = false
</pre>
<p>Start rendering pages faster by creating a new integer variable (right-click new) nglayout.initialpaint.delay integer preference lets you control how long Firefox waits before starting to render a page. If this value isn&#8217;t set, Firefox defaults to 250 milliseconds, or 0.25 of a second.<br />
Set this to 0 to start rendering immideatly. I used the value 50 which is also quiet fast.</p>
<pre class="brush: jscript; title: ;">
nglayout.initialpaint.delay = 50
</pre>
<p>As default browser.cache.memory.enable is true.<br />
This setting lets Firefox saving copies of all graphical elements<br />
from the current browsing during a session for faster rendering.<br />
I set this to false to free up more memory. (Note that pages from<br />
your history will reload less quickly when you revisits them.)</p>
<pre class="brush: jscript; title: ;">
browser.cache.memory.enable = true
</pre>
<p>Firefox caches several recently visited Web pages in memory so they don&#8217;t have to be regenerated when you press Back or Forward. The integer setting browser.sessionhistory.max_total_viewers determines how many individual Web pages to store in the back/forward cache; each page takes about 4MB (or 4,000KB) of RAM. The default setting is -1, which stores a maximum of 8 pages. for me 3 is more then enough:</p>
<pre class="brush: jscript; title: ;">
browser.sessionhistory.max_total_viewers = 3
</pre>
<p>Swap out to disk memory when minimized (Windows only). A little-known feature in Firefox allows the Windows memory manager to swap out some of Firefox&#8217;s physical memory space to disk when Firefox is minimized but not closed. This allows other programs to use the physical memory that Firefox was previously monopolizing. Firefox&#8217;s minimized memory usage with (top) and without (bottom) config.trim_on_minimize. (Click for larger view.)<br />
By default, this feature is turned off, for two reasons: 1) PC memory is generally more plentiful than it used to be, so it makes sense to use it if it&#8217;s available, and 2) swapping Firefox&#8217;s memory out to disk will slow the program down when it&#8217;s restored.<br />
That said, if you run Firefox side by side with other memory-hungry applications, it might help keep them from competing with each other. To enable this feature, create a new Boolean preference called config.trim_on_minimize and set its value to true.</p>
<pre class="brush: jscript; title: ;">
config.trim_on_minimize  = true
</pre>
<p>Is this too much work for you, see my related post how you can add them in the Mozilla preferences file, and how you can back-up this one:<a href="http://ladysign-apps.com/blog/archives/215"><br />
http://ladysign-apps.com/blog/archives/215</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/tweaks-for-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Make Firefox Faster</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/make-firefox-faster/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/make-firefox-faster/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 08:21:04 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[about:config]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/Blog/?p=5</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>People who know me, know that I am a big fan of Mozilla Firefox.</p>
<p>With these settings you can make Firefox faster:</p>
<p>1. Type[......]</p><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/browsers/make-firefox-faster/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>People who know me, know that I am a big fan of Mozilla Firefox.</p>
<p>With these settings you can make Firefox faster:</p>
<p>1. Type in the adressbar: <strong>about:config</strong><br />
2. Filter on the word: <strong>pipe</strong><br />
3. <strong>Change all the boolean values from false to true</strong><br />
4. <strong>Change the max request integer from 4 to 8<br />
</strong><br />
<br/><br />
<strong>These configurations were tested for FireFox 2 &#038; 3.</strong></p>
<pre class="brush: jscript; title: ;">
network.http.pipelining = true
network.http.pipelining.maxrequest = 8
network.http.max-connections  = 96
network.http.pipelining.ssl = true
network.http.proxy.pipelining = true
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/make-firefox-faster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

