<?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; browsers</title>
	<atom:link href="http://www.ladysign-apps.com/blog/tag/browsers/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 Chome Extension</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/create-chome-extension/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/create-chome-extension/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 14:41:54 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[api]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[chrome]]></category>

		<guid isPermaLink="false">http://www.ladysign-apps.com/blog/?p=1019</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>It&#8217;s really easy to create your own Chrome Extension.<br />
This simple extension just opens your personal website in a n[......]</p><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/browsers/create-chome-extension/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>It&#8217;s really easy to create your own Chrome Extension.<br />
This simple extension just opens your personal website in a new tab.</p>
<p>1. Create a folder<br />
2. Create the following files:<br />
* manifest.json<br />
* background.html<br />
* icon.png<br />
3. Edit the manifest file:</p>
<pre class="brush: plain; title: ;">
{
  &quot;name&quot;: &quot;My website&quot;,
  &quot;version&quot;: &quot;1.0&quot;,
  &quot;description&quot;: &quot;Just browse to my website...&quot;,
  &quot;background_page&quot;: &quot;background.html&quot;,
  &quot;browser_action&quot;: {
    &quot;default_icon&quot;: &quot;icon.png&quot;,
    &quot;default_title&quot;: &quot;My website&quot;
  },
  &quot;permissions&quot;: [&quot;tabs&quot;]
}
</pre>
<p>4. Now edit the background.html file:</p>
<pre class="brush: plain; title: ;">
&lt; html&gt;
&lt; head&gt;
	&lt; script&gt;
	chrome.browserAction.onClicked.addListener(function(tab) {
		var createData = {
			url: &quot;http://www.ladysign-apps.com&quot;
		}
		//you can also specify a callback after page load...
		chrome.tabs.create(createData);
                //or to load a new window:
		//chrome.windows.create(createData);
	});
&lt; /script&gt;
&lt; /head&gt;
&lt; body&gt;
&lt; /body&gt;
&lt; /html&gt;
</pre>
<p>From the background.html you can include any other file you want to include in this package.</p>
<p>5. Now open Chrome.<br />
6. Open de extension tab: (Chrome Dev icon) > Extra / Tools > Extensions<br />
7. Click the load button, and point to your folder, to test extension.<br />
You will see the extension is added next to your addressbar.</p>
<p>Works?<br />
8. Now pack it: &#8211; Press the pack button; and point to your folder again.<br />
Chrome will now create a plugin of it; with an *.crx in the filename.<br />
It will also create *.pem key file, so it identifies your plugin for further updates&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/create-chome-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go home IE6, you always break rules.</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/go-home-ie6-you-always-break-rules/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/go-home-ie6-you-always-break-rules/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 19:26:57 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[geeky]]></category>
		<category><![CDATA[ie6]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/blog/?p=761</guid>
		<description><![CDATA[<p><img src="http://www.ladysign-apps.com/blog/lee/8.jpg" alt="Go home IE6!" /></p>
<p>Love it? Why don&#8217;t you use it as a <a href="http://www.flickr.com/photos/robotjohnny/3629069606/sizes/o/">wallpaper</a>?</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ladysign-apps.com/blog/lee/8.jpg" alt="Go home IE6!" /></p>
<p>Love it? Why don&#8217;t you use it as a <a href="http://www.flickr.com/photos/robotjohnny/3629069606/sizes/o/">wallpaper</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/browsers/go-home-ie6-you-always-break-rules/feed/</wfw:commentRss>
		<slash:comments>1</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>
		<item>
		<title>Browser statistics &#8211; September 2008</title>
		<link>http://www.ladysign-apps.com/blog/code/browsers/browser-statistics-september-2008/</link>
		<comments>http://www.ladysign-apps.com/blog/code/browsers/browser-statistics-september-2008/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 09:14:50 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[statistics]]></category>

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

