<?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; firefox</title>
	<atom:link href="http://www.ladysign-apps.com/blog/tag/firefox/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>Create a Firefox Extension</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/create-a-ff-extension/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/create-a-ff-extension/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 12:33:21 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[browser plugin]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[ff]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/blog/?p=1023</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 2 out of 5 stars</p>
<p>Create the startup files and folders via:<br />
<a href="https://addons.mozilla.org/en-US/developers/tools/builder/9b0cddaa3fc073e50a0e7e284ef64438">https://addons.mozilla.org/en-US/developers/tools/builder/9b0cddaa3fc073e50a0e7[......]</a></p><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/browsers/create-a-ff-extension/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 2 out of 5 stars</p>
<p>Create the startup files and folders via:<br />
<a href="https://addons.mozilla.org/en-US/developers/tools/builder/9b0cddaa3fc073e50a0e7e284ef64438">https://addons.mozilla.org/en-US/developers/tools/builder/9b0cddaa3fc073e50a0e7e284ef64438</a></p>
<p>Prefill all the fields, and build the zip file.<br />
Unpack this zip file, and open:<br />
/chrome/content/overlay.js</p>
<p>You can edit this file.<br />
In chrome/skin/ are the files for editing the styles and logo.</p>
<p>After changing the files. Zip it in and rename the zip file to the xpi extension.<br />
Drag the xpi file in your FF browser.. And your own plugin is installed.</p>
<p>More info:<br />
<a href="https://addons.mozilla.org/en-US/developers/docs/getting-started">https://addons.mozilla.org/en-US/developers/docs/getting-started</a><br />
<a href="https://developer.mozilla.org/en/Code_snippets/Tabbed_browser">https://developer.mozilla.org/en/Code_snippets/Tabbed_browser</a><br />
<a href="https://developer.mozilla.org/en/XUL/tabbrowser#m-loadURI">https://developer.mozilla.org/en/XUL/tabbrowser#m-loadURI</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/create-a-ff-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup GMail as mailto for Firefox</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/setup-gmail-as-mailto-for-firefox/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/setup-gmail-as-mailto-for-firefox/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 08:27:48 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mailto]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=222</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>Don&#8217;t you think it&#8217;s frustrating that every time you click on a contact (mailto) link, your Microsoft Outlook[......]</p><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/browsers/setup-gmail-as-mailto-for-firefox/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>Don&#8217;t you think it&#8217;s frustrating that every time you click on a contact (mailto) link, your Microsoft Outlook will be opened automatically, why you would prefer to write the email with GMail?<br />
Just configure Firefox for this!</p>
<p>Open the inbox of your GMail account.<br />
Write this line in the addressbar:</p>
<pre class="brush: jscript; title: ;">
javascript:window.navigator.registerProtocolHandler(&quot;mailto&quot;,&quot;https://mail.google.com/mail/?extsrc=mailto&amp;url=%s&quot;,&quot;GMail&quot;)
</pre>
<p>Firefox can ask you to add mail.google.com as an application for your mailto links.\<br />
Now, if you click a mailto: link, try the tips link Firefox 3 will ask which application you want to use.<br />
Choose Gmail, and select &#8220;Remember my choice for mailto links&#8221; to set the preference permanently.<br />
Go to Tools > Appications > Mailto: set &#8220;Use Gmail&#8221;</p>
<p>Make sure Firefox is configured correctly in the about:config. (should be by default).</p>
<pre class="brush: jscript; title: ;">
handler.external.mailto = true
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/setup-gmail-as-mailto-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/browsers/firefox-backup-aboutconfig-prefs/'>继续阅读</a></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; title: ;">
C:\Documents and Settings\&lt;username&gt;\Application Data\Mozilla\Firefox\Profiles\&lt;profile ID&gt;\
</pre>
<p>Vista:</p>
<pre class="brush: jscript; title: ;">
 \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; title: ;">
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>
		<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>Browser statistics &#8211; October 2008</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/browser-statistics-october-2008/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/browser-statistics-october-2008/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 15:39:52 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[w3c]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=195</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>Here are the browser statistics for October 2008, according W3C:</p>
<ol>
<li>Mozilla Firefox &#8211; 44.0%</li>
<li>MS Internet Explorer 7 &#[......]</li></ol><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/browsers/browser-statistics-october-2008/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>Here are the browser statistics for October 2008, according W3C:</p>
<ol>
<li>Mozilla Firefox &#8211; 44.0%</li>
<li>MS Internet Explorer 7 &#8211; 26.9%</li>
<li>MS Internet Explorer 6 &#8211; 20.2%</li>
<li>Google Chrome &#8211; 3.0%</li>
<li>Safari &#8211; 2.8%</li>
<li>Opera &#8211; 2.2%</li>
<li>Mozilla &#8211; 0.4%</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/browser-statistics-october-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

