<?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>[LINICKX].com &#187; Firefox</title>
	<atom:link href="http://www.linickx.com/category/firefox/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linickx.com</link>
	<description>Moments of Genius followed by Trash.</description>
	<lastBuildDate>Thu, 17 May 2012 10:23:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Better Proxy Settings&#8230; Bluecoat, wpad, proxy.pac &amp; dhcp option 252</title>
		<link>http://www.linickx.com/960/better-proxy-settings-bluecoat-wpad-proxypac-dhcp-option-252</link>
		<comments>http://www.linickx.com/960/better-proxy-settings-bluecoat-wpad-proxypac-dhcp-option-252#comments</comments>
		<pubDate>Sat, 02 May 2009 16:32:47 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[bluecoat]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=960</guid>
		<description><![CDATA[Recently I&#8217;ve been involved with a bluecoat install; one of the requirements I&#8217;ve been faced with was helping the client with was removing fixed proxy settings within their browsers. For how-to references a combination of google, wikipedia and this post &#8230; <a href="http://www.linickx.com/960/better-proxy-settings-bluecoat-wpad-proxypac-dhcp-option-252">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been involved with a <a href="https://www.bluecoat.com/">bluecoat</a> install; one of the requirements I&#8217;ve been faced with was helping the client with was removing <em>fixed</em> proxy settings within their browsers.</p>
<p>For how-to references a combination of google, wikipedia and <a href="http://blog.freyguy.com/archives/2006/03/01/proxy-auto-detect-ie-and-firefox/">this post</a> are good places to start; I intend to document my experience you may find some overlap.</p>
<p>The 1st thing to understand is that Firefox (<em>FF</em>) and Internet Explorer (<em>IE</em>) both support an &#8220;automatically detect proxy&#8221; setting, but they are implement in different ways. Both FF &#038; IE use a proxy.pac (<em>also known as wpad.dat</em>) for their configuration, they just &#8220;look for it&#8221; in different ways.</p>
<p>The proxy pac file is a java script that tells the browsers (<em>both FF &#038; IE</em>) how to connect, there&#8217;s some good <a href="http://www.findproxyforurl.com/">pac file examples</a> here, this is what I did&#8230;</p>
<pre class="brush: plain; title: ; notranslate">
function FindProxyForURL(url, host)
{
	// The 1st if function tests if the URI should be by-passed…
	// Proxy By-Pass List
	if (
		// ignore RFC 1918 internal addreses
		isInNet(host, &quot;10.0.0.0&quot;, &quot;255.0.0.0&quot;) ||
		isInNet(host, &quot;172.16.0.0&quot;, &quot;255.240.0.0&quot;) ||
		isInNet(host, &quot;192.168.0.0&quot;, &quot;255.255.0.0&quot;) ||

		// is url is like http://server by-pass
		isPlainHostName(host) ||

		// localhost!!
		localHostOrDomainIs(host, &quot;127.0.0.1&quot;) ||

		// by-pass internal URLS
		dnsDomainIs(host, &quot;.mycompany.com&quot;) ||
		dnsDomainIs(host, &quot;.mycompany.local&quot;)
		)

		// If True, tell the browser to go direct…
		return &quot;DIRECT&quot;;

		// If False, it’s not on the by-pass then Proxy the request… if you fail to connect to the proxy, try direct.

return &quot;PROXY 10.10.10.10:8080;DIRECT&quot;;

}
</pre>
<p>Once you&#8217;re happy with what you&#8217;ve written you need to &#8220;publish&#8221; the pac file on a webserver for your clients to download it&#8230; I&#8217;ve decided to use the bluecoat proxy SG.</p>
<p>Now you can&#8217;t upload the pac file via the GUI, you need to get down and dirty with the command line, below is an example ssh session&#8230;</p>
<pre class="brush: plain; title: ; notranslate">
Proxy&gt; enable
Proxy# conf t
Proxy# inline accelerated-pac 123
....... Paste the contents of proxy.pac .......
123
Proxy#
</pre>
<p>Before going any further log into you&#8217;re bluecoat, make sure that under <code>Services -> Proxy Services</code>, HTTP 80 &#038; 8080 are set to Intercept. Next check that <code>Services -> Management services</code>, HTTP-Console 8081 is enabled&#8230; this service will be used to get the pac file, leave HTTPS-Console 8082 on as using the 8081 for administrator access would be a bad idea.</p>
<p>You will now hopefully be able to download your pac file from the following url http://10.10.10.10:8081/accelerated_pac_base.pac .. change the IP as necessary.</p>
<p>Once that works we&#8217;re going to add some proxy policy to make that url (a) nicer (b) compatible with Firefox. In the Bluecoat GUI under policy (<em>not the visual policy manager</em>) make sure that the local policy is read 1st&#8230; at the top of the file list. The following ssh session of policy, re-writes the pac file for a variety of names, basically I&#8217;ve tried to capture every combination that a user might try&#8230;.. </p>
<pre class="brush: plain; title: ; notranslate">
Proxy&gt; enable
Proxy# conf t
Proxy# inline policy local 123
&lt;proxy&gt;
url=http://proxy.mycompany.local/proxy.pac authenticate(no)
url=http://proxy.mycompany.local/wpad.dat authenticate(no)
url=http://wpad.mycompany.local/wpad.dat authenticate(no)
url=http://www.wpad.com/wpad.dat authenticate(no)
url=http://proxy.mycompany.local:8081/accelerated_pac_base.pac authenticate(no)
url=http://10.10.10.10:8081/accelerated_pac_base.pac authenticate(no)

&lt;cache&gt;
url.domain=http://proxy.mycompany.local/proxy.pac cache(no)
url.domain=http://proxy.mycompany.local/wpad.dat cache(no)
url.domain=http://wpad.mycompany.local/wpad.dat cache(no)
url.domain=http://www.wpad.com/wpad.dat cache(no)
url.domain=http://proxy.mycompany.local:8081/accelerated_pac_base.pac cache(no)
url.domain=http://10.10.10.10:8081/accelerated_pac_base.pac cache(no)

&lt;proxy&gt;
url=http://proxy.mycompany.local/proxy.pac action.rewrite_pac(yes)
url=http://proxy.mycompany.local/wpad.dat action.rewrite_pac(yes)
url=http://wpad.mycompany.local/wpad.dat action.rewrite_pac(yes)
url=http://www.wpad.com/wpad.dat action.rewrite_pac(yes)
url=/wpad.dat action.rewrite_pac(yes)

define action rewrite_pac
rewrite(url,&quot;(.*)&quot;,&quot;http://10.10.10.10:8081/accelerated_pac_base.pac&quot;)
end

123
Proxy#
</pre>
<p>Phew, thats the bluecoat side of things sorted, now we need to get clients to download the file! This is where the browser have different approaches&#8230;.</p>
<p><strong>Internet explorer uses DCHP</strong> Option 252 to detect the proxy, you can set the option of any of the URLS you&#8217;re re-writing on the bluecoat, I chose http://wpad.mycompany.local/wpad.dat .</p>
<p><strong>Firefox uses DNS</strong> to detect the proxy, so you&#8217;re going to need to create some records&#8230; The bluecoat was called &#8220;proxy&#8221; so an <strong>A record</strong> for <code>proxy.mycompany.local</code> already existed, we created a <strong>CNAME record</strong> for <code>wpad.mycompany.local</code> pointing to <code>proxy.mycompany.local</code> &#8230; if your dns domain is something like <code>uk.mycomany.local</code> you&#8217;ll need to add cname records <code>wpad.uk.mycompany.local </code>&#038; <code>wpad.mycompany.local</code> and add the necessary lines to the bluecoat rewire code above.</p>
<p>Once done you can set either browser to &#8220;automatically detect&#8221; and finger&#8217;s cross all will work!</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/960/better-proxy-settings-bluecoat-wpad-proxypac-dhcp-option-252/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Allowing RFC1918 &#8211; 192.168, 10. , 172.16-32 address with NoScript</title>
		<link>http://www.linickx.com/859/allowing-rfc1918-192168-10-17216-32-address-with-noscript</link>
		<comments>http://www.linickx.com/859/allowing-rfc1918-192168-10-17216-32-address-with-noscript#comments</comments>
		<pubDate>Fri, 06 Mar 2009 11:00:17 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[NoScript]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=859</guid>
		<description><![CDATA[I&#8217;ve recently started installed the firefox add-on NoScript to improve my online security. One of the things that&#8217;s been a little frustrating has been having to manually accept/white list internal 192.168.1.1 type addresses. After a fruitless google, I&#8217;ve managed to &#8230; <a href="http://www.linickx.com/859/allowing-rfc1918-192168-10-17216-32-address-with-noscript">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently started installed the firefox add-on <a href="http://noscript.net">NoScript </a>to improve my online security.</p>
<p>One of the things that&#8217;s been a little frustrating has been having to manually accept/white list internal 192.168.1.1 type addresses.  After a fruitless google, I&#8217;ve managed to find <a href="http://forums.mozillazine.org/viewtopic.php?p=5567475#p5567475">the answer here in the NoScript Forum</a>.</p>
<p>There is one major limitation and that is the NoScript white list only accepts entries of more than one byte, this means that you cannot whitelist the whole of 10.*.*.* (<em>10/8</em>) as inputting 10. is only one byte. On the upside you can however whitelist a whole /16 (<em>255.255.0.0</em>) subnet, which works out nicely for the 192.168.0.0/16 set off addresses but for the 10&#8242;s &#038; 172&#8242;s you&#8217;re a bit stuffed.</p>
<p>Now you may find that when you try to white list 10.123.0.0/16 that you have issues, I know I did! The trick is to read the forum post carefully. If you want to white list 10.123.0.0 through 10.123.255.255 then add the following:</p>
<p><code>http://10.123</p>
<p>https://10.123</code></p>
<p>That should allow both http &#038; ssl traffic to all those internal addresses to be permitted by NoScript!</p>
<p>Dear googler, I hope this was of some help <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/859/allowing-rfc1918-192168-10-17216-32-address-with-noscript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Add-on: Remember The Milk for Gmail</title>
		<link>http://www.linickx.com/360/firefox-add-on-remember-the-milk-for-gmail</link>
		<comments>http://www.linickx.com/360/firefox-add-on-remember-the-milk-for-gmail#comments</comments>
		<pubDate>Fri, 01 Feb 2008 11:15:57 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[rtm]]></category>

		<guid isPermaLink="false">http://www.linickx.com/archives/360/firefox-add-on-remember-the-milk-for-gmail</guid>
		<description><![CDATA[I&#8217;ve been playing with Remember the milk for some time now, I thought with my n800 it would be really useful&#8230;BUT&#8230; Actually I&#8217;ve found that the firefox extension they have released has really upped my usage, as soon as I &#8230; <a href="http://www.linickx.com/360/firefox-add-on-remember-the-milk-for-gmail">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing with <a href="http://www.rememberthemilk.com">Remember the milk</a> for some time now, I thought with <a href="http://www.linickx.com/archives/tag/n800">my n800</a> it would be really useful&#8230;BUT&#8230; Actually I&#8217;ve found that the firefox extension they have released has really upped my usage, as soon as I can get my tasks synced with my n800 I&#8217;ll definitively be upgrading to their pro version.</p>
<p>I&#8217;ve recommended this plugin to a few friends and they love it, so if you&#8217;re looking for a new personal task managment solution then this is for you!</p>
<blockquote><p><a href="http://www.rememberthemilk.com/services/gmail/">Remember The Milk &#8211; Services / Remember The Milk for Gmail</a><br />
Remember The Milk for Gmail is a Firefox extension that allows you to manage your tasks in Gmail (complete, postpone, and edit tasks), add new tasks (and connect them with your emails, contacts, and Google Calendar events), automatically add tasks for starred messages or specific labels, and much more!</p></blockquote>
<p>My <a href="http://www.linickx.com/firefox">firefox page</a> is now back online, so check it out for a list of other useful plugins/addons.</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/360/firefox-add-on-remember-the-milk-for-gmail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Extension &#8211; Flashblock</title>
		<link>http://www.linickx.com/313/firefox-extension-flashblock</link>
		<comments>http://www.linickx.com/313/firefox-extension-flashblock#comments</comments>
		<pubDate>Mon, 10 Sep 2007 15:05:15 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[flashblock]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/313/firefox-extension-flashblock/</guid>
		<description><![CDATA[I&#8217;m not a great fan of flash, it seems to eat up bandwith, processor and memory very quickly.. not to mention the hassle of trying it working on a linux x86_64 machine ! I recently came across this great plug-in.. &#8230; <a href="http://www.linickx.com/313/firefox-extension-flashblock">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not a great fan of flash, it seems to eat up bandwith, processor and memory very quickly.. not to mention the hassle of trying it working on a linux x86_64 machine ! I recently came across this great plug-in..</p>
<blockquote><p><a href="https://addons.mozilla.org/en-US/firefox/addon/433">Flashblock :: Firefox Add-ons</a><br />
Never be annoyed by a Flash animation again! Blocks Flash so it won&#8217;t get in your way, but if you want to see it, just click on&#8230;</p></blockquote>
<p>The white-list functionality is nice&#8230; i.e block all except &#8220;blah&#8221;.. the option to run it in a black-list mode would be good for those who are only offended by flash on certain sites.</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/313/firefox-extension-flashblock/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPG For Firefox !</title>
		<link>http://www.linickx.com/296/gpg-for-firefox</link>
		<comments>http://www.linickx.com/296/gpg-for-firefox#comments</comments>
		<pubDate>Wed, 11 Jul 2007 15:51:02 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[gpg]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/296/gpg-for-firefox/</guid>
		<description><![CDATA[yay ! FireGPG &#8211; use GPG easily in Firefox ! FireGPG is a Firefox extension under GPL which brings an interface to encrypt, decrypt, sign or verify the signature of a text in any web page using GnuPG. Copyright &#169; &#8230; <a href="http://www.linickx.com/296/gpg-for-firefox">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>yay !</p>
<blockquote><p><a href="http://firegpg.tuxfamily.org/?page=home&amp;lang=en">FireGPG &#8211; use GPG easily in Firefox !</a><br />
FireGPG is a Firefox extension under GPL which brings an interface to encrypt, decrypt, sign or verify the signature of a text in any web page using GnuPG.</p></blockquote>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/296/gpg-for-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail Notifier &#8211; Firefox Extension</title>
		<link>http://www.linickx.com/290/gmail-notifier-firefox-extension</link>
		<comments>http://www.linickx.com/290/gmail-notifier-firefox-extension#comments</comments>
		<pubDate>Fri, 18 May 2007 17:38:40 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/290/gmail-notifier-firefox-extension/</guid>
		<description><![CDATA[Simple,effective and necessary&#8230; Gmail Notifier :: Firefox Add-ons A notifier for Gmail&#8230; I&#8217;ve been using this for a while, and most firefox users probably have something in place already, so nothing new here, but I use my firefox page for &#8230; <a href="http://www.linickx.com/290/gmail-notifier-firefox-extension">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Simple,effective and necessary&#8230;</p>
<blockquote><p><a href="https://addons.mozilla.org/en-US/firefox/addon/173">Gmail Notifier :: Firefox Add-ons</a><br />
A notifier for Gmail&#8230;</p></blockquote>
<p>I&#8217;ve been using this for a while, and most firefox users probably have something in place already, so nothing new here, but I use<a href="http://www.linickx.com/index.php?content=firefox"> my firefox page</a> for prepping new installs, so perhaps this is more of a &#8220;post to self&#8221; <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/290/gmail-notifier-firefox-extension/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Reader Notifier &#8211; Firefox Extension</title>
		<link>http://www.linickx.com/255/google-reader-notifier-firefox-extension</link>
		<comments>http://www.linickx.com/255/google-reader-notifier-firefox-extension#comments</comments>
		<pubDate>Fri, 09 Mar 2007 09:31:35 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[reader]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/255/google-reader-notifier-firefox-extension/</guid>
		<description><![CDATA[This is one of those extensions I couldn&#8217;t live without ! Google Reader Notifier &#124; Firefox Add-ons &#124; Mozilla Corporation Google Reader Notifier by Mark D.B.D This firefox extension shows you how many unread items you have in your Google &#8230; <a href="http://www.linickx.com/255/google-reader-notifier-firefox-extension">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is one of those extensions I couldn&#8217;t live without !</p>
<blockquote><p>  <a href="https://addons.mozilla.org/firefox/3977/"> </a>  <a href="https://addons.mozilla.org/firefox/3977/">Google Reader Notifier | Firefox Add-ons | Mozilla Corporation</a> Google Reader Notifier by Mark D.B.D  This firefox extension shows you how many unread items you have in your Google Reader account.</p></blockquote>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/255/google-reader-notifier-firefox-extension/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colorful Tabs &#8211; Firefox Extension</title>
		<link>http://www.linickx.com/251/colorful-tabs-firefox-extension</link>
		<comments>http://www.linickx.com/251/colorful-tabs-firefox-extension#comments</comments>
		<pubDate>Tue, 30 Jan 2007 22:11:20 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/251/colorful-tabs-firefox-extension/</guid>
		<description><![CDATA[Some times the simple solutions, make the biggest difference to a user experience&#8230;. Colorful Tabs &#124; Firefox Add-ons &#124; Mozilla Corporation The most beautiful yet the simplest add-on that makes a strong colorful appeal. Colors every tab in a different &#8230; <a href="http://www.linickx.com/251/colorful-tabs-firefox-extension">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some times the simple solutions, make the biggest difference to a user experience&#8230;.</p>
<blockquote><p><a href="https://addons.mozilla.org/firefox/1368/">Colorful Tabs | Firefox Add-ons | Mozilla Corporation</a><br />
The most beautiful yet the simplest add-on that makes a strong colorful appeal. Colors every tab in a different color and makes them easy to distinguish while beautifying the overall appearance of the interface. An essential.</p></blockquote>
<p><strong>UPDATE:</strong> It seems that the <a href="http://varun21.thestasis.com/">Colorful Tabs authors homepage</a> is down, as a result I appear to be getting hits from google and comments about features. I&#8217;d like to stress that I have nothing to do with the development of Colorful Tabs and you have my apologies if my post appeared that way. You have stumbled across a post from <a href="http://www.linickx.com/archives/category/firefox">my firefox recommendations category</a> where by I post links to firefox add-ons I like have installed and recommend to my friends.</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/251/colorful-tabs-firefox-extension/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Customize Google &#8212; Firefox Extension</title>
		<link>http://www.linickx.com/252/customize-google-firefox-extension</link>
		<comments>http://www.linickx.com/252/customize-google-firefox-extension#comments</comments>
		<pubDate>Tue, 23 Jan 2007 09:21:28 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/252/customize-google-firefox-extension/</guid>
		<description><![CDATA[An absolute must for anyone who uses a google service, best enhancement is adding https to things like, docs, gmail &#38; calendar ! CustomizeGoogle: Improve Your Google Experience &#8212; Firefox Extension CustomizeGoogle is a Firefox extension that enhances Google search &#8230; <a href="http://www.linickx.com/252/customize-google-firefox-extension">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An absolute must for anyone who uses a google service, best enhancement is adding https to things like, <a href="http://docs.google.com">docs</a>, <a href="http://mail.google.com">gmail</a> &amp; <a href="http://www.google.com/calendar">calendar</a> !</p>
<blockquote><p><a href="http://www.customizegoogle.com/">CustomizeGoogle: Improve Your Google Experience &#8212; Firefox Extension</a><br />
CustomizeGoogle is a Firefox extension that enhances Google search results by adding extra information (like links to Yahoo, Ask.com, MSN etc) and removing unwanted information (like ads and spam).</p></blockquote>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/252/customize-google-firefox-extension/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nagios Checker &#8211; Firefox Extension</title>
		<link>http://www.linickx.com/241/nagios-checker-firefox-extension</link>
		<comments>http://www.linickx.com/241/nagios-checker-firefox-extension#comments</comments>
		<pubDate>Mon, 11 Dec 2006 11:11:39 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[nagios]]></category>

		<guid isPermaLink="false">http://www.linickx.com/blog/archives/241/nagios-checker-firefox-extension/</guid>
		<description><![CDATA[Been looking for something like this for a while&#8230;.. Nagios Checker &#124; Firefox Add-ons &#124; Mozilla Corporation The statusbar indicator of the events from the network monitoring system Nagios. Information is parsed from Nagios web interface. In the extension settings &#8230; <a href="http://www.linickx.com/241/nagios-checker-firefox-extension">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Been looking for something like this for a while&#8230;..</p>
<blockquote><p>
<a href="https://addons.mozilla.org/firefox/3607/">Nagios Checker | Firefox Add-ons | Mozilla Corporation</a><br />
The statusbar indicator of the events from the network monitoring system Nagios. Information is parsed from Nagios web interface. In the extension settings dialog simply fill the start page URL of your Nagios web interface, eg. http://www.yourfirm.com/nagios/ and let the button to locate status script url.
</p></blockquote>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2012 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/241/nagios-checker-firefox-extension/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

