<?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>PCR&#039;s notepad &#187; Firefox</title>
	<atom:link href="http://notepad.patheticcockroach.com/category/software/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://notepad.patheticcockroach.com</link>
	<description>The area in patheticcockroach.com where the EEG isn&#039;t isoelectric</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:11:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Some must-have Firefox hidden settings</title>
		<link>http://notepad.patheticcockroach.com/1368/some-must-have-firefox-hidden-settings/</link>
		<comments>http://notepad.patheticcockroach.com/1368/some-must-have-firefox-hidden-settings/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 20:37:49 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=1368</guid>
		<description><![CDATA[How to hide the &#8220;download finished&#8221; bubble This is controlled by the browser.download.manager.showAlertOnComplete setting (edit it via about:config): set it to false to disable the highly annoying &#8220;download finished&#8221; popup which sloooooowwwwly appears and then diiiiiiiiisappeeeaaaars every time a file has finished downloading (this thing is particularly slow when your GPU is busy doing something [...]]]></description>
			<content:encoded><![CDATA[<h2>How to hide the &#8220;download finished&#8221; bubble</h2>
<p>This is controlled by the <code>browser.download.manager.showAlertOnComplete</code> setting (edit it via <code>about:config</code>): set it to false to disable the highly annoying &#8220;download finished&#8221; popup which sloooooowwwwly appears and then diiiiiiiiisappeeeaaaars every time a file has finished downloading (this thing is particularly slow when your GPU is busy doing something else).</p>
<h2>How to skip antivirus scanning of incoming files + don&#8217;t tag downloaded exe&#8217;s as coming from Internet</h2>
<p>This is controlled by the <code>browser.download.manager.scanWhenDone</code> setting: set it to false to disable the bloody time-wasting virus scan at the end of every file download. This never caught a single virus for me anyway&#8230; Also, it makes the downloaded files bypass Windows security policy checks (the former preference browser.download.manager.skipWinSecurityPolicyChecks was merged into this one), ie when you launch a downloaded executable Windows won&#8217;t bother you with the warning popup &#8220;this program was downloaded from Internet, are you sure you want to run it?&#8221;.</p>
<h2>How to delete words from the personal dictionary</h2>
<p>For some reason, I find it extremely easy to accidentally add misspelled words to the personal dictionary &#8211; I guess that menu item is somewhat misplaced. On the other hand, deleting them is then a pain in the ***, notably the GUI provides no way to do this. You&#8217;ll have to manually edit the dictionary file&#8230;<br />
It&#8217;s located in your profile folder (on Windows NT/2k/XP/Vista/Se7en, it looks like <code>%appdata%\Mozilla\Firefox\Profiles\xxxxxxxx.default</code> &#8211; just browse to <code>%appdata%\Mozilla\Firefox\Profiles\</code> then it will be obvious -, for other OSes, check out <a href="http://kb.mozillazine.org/Profile_folder">Profile folder on MozillaZine</a>, or even simpler go to <code>about:support</code> and click on &#8220;Profile Directory &#8211; Open containing folder&#8221;) and is named persdict.dat. You can edit it with any plain text editor supporting Unix line breaks (for instance Notepad++ is good, the standard Windows notepad isn&#8217;t). Make sure that Firefox isn&#8217;t running, as it will overwrite the file when you close it. <a href="http://ffextensionguru.com/wiki/tweaks/general-tweaks/removing-added-words-from-dictionary/">Source</a></p>
<h2>How to configure several profiles</h2>
<p>Close Firefox (make sure there&#8217;s really no more firefox.exe running in the background), then relaunch it with the <code>-profilemanager</code> argument. On Windows, the easiest way to do is is probably to hit [Windows key]+R (for &#8220;Run&#8221;), and then type <code>firefox.exe -profilemanager</code>. After that, you should get the profile manager window, which should be self-explanatory enough. If you need more details, <a href="http://improvefirefox.com/multiple-firefox-profiles/">this post</a> should be helpful.</p>
<h2>How to prevent Firefox from trimming link URLs</h2>
<p>That stupid feature was added when they replaced the status bar with that retarded add-on bar. Before that, when you hovered a link it&#8217;s target would show up in the status bar. As far as I remember, they then moved that preview to the address bar (with big fat huge trimming, as this is a limited and already well-filled space), and due to enough people getting upset with it, they moved it back to the bottom of the window (to the bottom-left, or when the find bar is opened (bug?), to the bottom-right), but this time above the add-on bar. BUT they didn&#8217;t remove the trimming: that URL preview is by default limited to 50% of the window&#8217;s width. Why the heck not 100%?? Anyway, to change that, go to your chrome folder (you might need to create it manually), which is located in <code>%appdata%\Mozilla\Firefox\Profiles\xxxxxxxx.default\chrome</code> (see the section about dictionary entries for more details and alternative OSes), then edit or create (with a plain text editor) the file userChrome.css. In this file, add the following section:<br />
<code>statuspanel {max-width: 100% !important;}</code><br />
And voilà, when you restart Firefox link URL previews will be able to use the whole width of the window, so they shouldn&#8217;t get trimmed often, then&#8230;</p>
<h2>How to decrease the minimum tab width</h2>
<p>As in the previous tip, you need to create/edit userChrome.css. Add the following code (edit sizes as you wish):<br />
<code>.tabbrowser-tab[fadein]:not([pinned]) {<br />
min-width: 15px !important;<br />
max-width: 250px !important;}</code></p>
<h2>How to force Firefox to display the full URL in the address bar</h2>
<p>By this I mean, the real full URL, including the bloody http:// part. Well, I long thought this was impossible, but eventually a setting was created for this! In about:config, just set <code>browser.urlbar.trimURLs</code> to false. The change will be immediately visible! <img src='http://notepad.patheticcockroach.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well, that&#8217;s all for today&#8230; Those are pretty much all the dirty hacks I need to perform when dealing with a new Fx install, apart from the ever changing <a href="http://notepad.patheticcockroach.com/2109/extensions-checkcompatibility-they-did-it-again/">extensions.checkCompatibility mess</a>. Keeping them on a single page should make my life easier the next time I need them&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/1368/some-must-have-firefox-hidden-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to write a successful Firefox extension</title>
		<link>http://notepad.patheticcockroach.com/2208/how-to-write-a-successful-firefox-extension/</link>
		<comments>http://notepad.patheticcockroach.com/2208/how-to-write-a-successful-firefox-extension/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 17:06:28 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Totally pointless]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=2208</guid>
		<description><![CDATA[Due to the massive lack of developer documentation, developing a Firefox extension is a pure pain in the ***. That&#8217;s why I eventually stopped supporting mine. Anyway, for those of you who are brave enough to still be willing to program an extension for that browser, here is a brief (2 steps only, wow!) guide [...]]]></description>
			<content:encoded><![CDATA[<p>Due to the massive lack of developer documentation, developing a Firefox extension is a pure pain in the ***. That&#8217;s why I eventually stopped supporting <a href="https://addons.mozilla.org/en-us/firefox/addon/yes-popups/">mine</a>. Anyway, for those of you who are brave enough to still be willing to program an extension for that browser, here is a brief (2 steps only, wow!) guide on how to make it a blockbuster.</p>
<p>First, unfortunately, there is a pretty high requirement: you need to be somewhat involved in the development of Firefox itself. Well, you don&#8217;t definitely have to, but in both the proofs of concept I&#8217;ve seen (see below), the author met that requirement, it makes the first step much easier. Ok, the guide now:</p>
<ul>
<li>The first step is to get a useful feature removed from Firefox.<br />
Example number 1: Mike Beltzner [:beltzner] got Dave Townsend [:Mossop] remove the extensions.checkCompatibility setting (see <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521905">bug 521905</a> &#8211; and the post about it on <a href="http://www.oxymoronical.com/blog/2009/11/Changing-the-checkCompatibility-preference" rel="nofollow">moronmoronical.com</a>). Nice move. Screwed basically all nightly testers and more generically pretty much every beta enthusiasts.<br />
Example number 2: Dão Gottwald [:dao] removed the browser.tabs.tabMinWidth setting (see <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=574654">bug 574654</a>). Now all your tabs must be at least <a href="http://support.mozilla.com/en-US/questions/753291">140 pixels wide</a>. Thank you Captain ScrewUps.</li>
<li>If you&#8217;ve been following properly, I bet you already guessed the second step: simply, create an extension that performs exactly the feature that you removed!<br />
Oh, I know what you&#8217;re thinking: &#8220;Wait a minute&#8230; this is too big, I&#8217;d never get away with this! This post is a joke, this can&#8217;t work.&#8221; Well, trust me it can (although this post is indeed a joke). But I guess bringing on proofs can do no harm, there you go:<br />
Example 1: Dave Townsend aka Mossop published the <a href="https://addons.mozilla.org/en-US/firefox/addon/nightly-tester-tools/">Nightly Tester Tools</a>, the primary feature of which used to be to remove compatibility checking (NB: as of today it seems that that feature got move into the <a href="https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/">Add-on Compatibility Reporter</a> extension).<br />
Example 2: Dao Gottwald aka dao published the <a href="https://addons.mozilla.org/en-US/firefox/addon/custom-tab-width/">Custom Tab Width</a>, the only feature of which is to add back an easy way to configure minimum and maximum tab width.</li>
</ul>
<p>So, have you been able to apply this guide? Congratulations, you&#8217;ve published a successful Firefox add-on! Maybe you also pushed a few hundreds of thousands of users a bit more towards Chrome (I wish I could say Opera), but who cares anyway?<br />
As a token of appreciation for your brilliant work at making Firefox a <del>better</del> worse browser, I&#8217;ll reveal to you the third and last bonus step to this guide:</p>
<ul>
<li>Abandon your add-on. Example 1: Dave Townsend aka Mossop abandoned the <a href="https://addons.mozilla.org/en-US/firefox/addon/nightly-tester-tools/">Nightly Tester Tools</a>.</li>
</ul>
<p>Muhahaha. All Ur about:config R belong to Us</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/2208/how-to-write-a-successful-firefox-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash 11 release candidate for portable browsers</title>
		<link>http://notepad.patheticcockroach.com/2185/flash-11-release-candidate-for-portable-browsers/</link>
		<comments>http://notepad.patheticcockroach.com/2185/flash-11-release-candidate-for-portable-browsers/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 07:57:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Chrome/Chromium]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=2185</guid>
		<description><![CDATA[Update: Flash 11 final is now available, with 64 bits support. Grab it there! Adobe published a few days ago the first release candidate of Flash 11 in their labs. Amongst the key new features of this version we find the Stage 3D API (3D GPU acceleration), support for a new audio codec G.711 as [...]]]></description>
			<content:encoded><![CDATA[<p><em>Update: Flash 11 final is now available, with 64 bits support. <a href="http://notepad.patheticcockroach.com/2243/flash-11-for-portable-browsers-32-and-64-bits/">Grab it there</a>!</em></p>
<p>Adobe published a few days ago the first release candidate of Flash 11 <a href="http://labs.adobe.com/downloads/flashplayer11.html">in their labs</a>. Amongst the key new features of this version we find the Stage 3D API (3D GPU acceleration), support for a new audio codec G.711 as well as the JPEG-XR image compression format. Also, a 64 bits version of the plugin is available, too.<br />
This RC1 is labelled 11.0.1.129 (you may also see 11.0.r1.129), and here is the portable version of the 32 bits version (I don&#8217;t think there are any portable browsers in 64 bits at the moment, except for the latest Fx nightly, but I don&#8217;t think many people use a 64 bits nightly as their portable browser&#8230;). <ins style="text-decoration:none;" datetime="2011-10-03T14:46:52+00:00">Edit: mkay, I forgot about Palemoon, I wasn&#8217;t exactly counting such rare forks indeed. So here&#8217;s the <a href="http://www.megaupload.com/?d=32T1R4HQ">64 bits portable Flash (NPSWF64_11_0_1.dll)</a>.</ins></p>
<p>As usual, to install this Flash portable, unpack it into the plugin folder for your browser, which is FYI:</p>
<ul>
<li>Firefox Portable: <em>Data/plugins</em></li>
<li>Opera USB: <em>program/plugins</em></li>
<li>Iron or Chrome Portable: <em>Iron/plugins</em></li>
</ul>
<p>Here is the zip containing <a href="http://www.filesonic.com/file/1899223244/Flash_11.0.1.129_(11_RC1).zip">NPSWF32.dll and flashplayer.xpt</a>. It&#8217;s hosted on filesonic, but below you&#8217;ll also find a link to a megaupload mirror. Note that the files hosted on FileSonic vanish after 30 days without a download, so usually only the latest versions (latest stable + latest preview if newer than stable) remain online there. So for older versions you&#8217;ll want to grab the Megaupload link.</p>
<div style="text-align:center;"><a href="http://www.filesonic.com/file/1899223244/Flash_11.0.1.129_(11_RC1).zip"><img src="http://img.patheticcockroach.com/01/logo_flash_player.jpg" alt="Flashlogo" width="128" height="128"/><br />
Flash 11.0.1.129 (11 RC1) for portable browsers (FileSonic)</a><br />
<a href="http://www.megaupload.com/?d=D7PT8Q8C">Flash 11.0.1.129 (11 RC1) for portable browsers (MegaUpload)</a>
</div>
<div style="margin-top:1em;margin-bottom:1em;">Want the stable thing instead? <a href="http://notepad.patheticcockroach.com/1841/flash-10-3-for-portable-browsers/">Here it is</a>, as I&#8217;m writing it&#8217;s Flash 10.3.</div>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/2185/flash-11-release-candidate-for-portable-browsers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Tab dragging broken in Firefox 8+?</title>
		<link>http://notepad.patheticcockroach.com/2180/tab-dragging-broken-in-firefox-8/</link>
		<comments>http://notepad.patheticcockroach.com/2180/tab-dragging-broken-in-firefox-8/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 07:26:12 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=2180</guid>
		<description><![CDATA[Update (2011-10-04): this bug is now fixed in the development version of Tab Mix Plus. This post in a nutshell: disable the Tab Mix Plus extension. Since a month or two, tab dragging (drag and drop to move the tabs around each others, but also to move a tab into a new window) has been [...]]]></description>
			<content:encoded><![CDATA[<p><em>Update (2011-10-04): this bug is now fixed in the <a href="http://tmp.garyr.net/forum/viewtopic.php?f=3&#038;t=10888">development version</a> of Tab Mix Plus.</em></p>
<p><em>This post in a nutshell: disable the Tab Mix Plus extension.</em></p>
<p>Since a month or two, tab dragging (drag and drop to move the tabs around each others, but also to move a tab into a new window) has been broken in the Firefox versions I use (Nightly 8 then 9, but also Aurora 8). I lived with that for a while because I was using mainly Opera for tab-intensive browsing, but eventually got too pissed-off with it not to try and deal with it.<br />
Searching about that didn&#8217;t yield any useful results. At first I found this remarkably unhelpful post on <a href="http://ubuntuforums.org/showthread.php?t=1310084">Ubuntu forums</a>, showing how Linux guys like to give answers in form of a riddle (&#8220;see solution code [FOT002] in that 51 pages long thread&#8221;) instead of a straight answer (direct link to the mentioned solution, anyone?). I eventually manage to find what this solution referred to (not by finding that solution, but by finding someone who mentioned how applying it failed), it doesn&#8217;t work.<br />
Then I found a very old post about tab dragging in Firefox 1.0 and 1.5. It was referring to TabBrowser Preferences: apparently, by the time of Fx 1.0, tab dragging was only available through the TabBrowser Preferences extension, whereas it was implemented natively into Fx 1.5. So I thought maybe there&#8217;s some interference between TabBrowser Preferences (or rather, its successor Tab Mix Plux) and tab dragging. Indeed, disabling it fixed the issue. Note that if you do and were using the session restore feature of Tab Mix Plus, you&#8217;ll want to re-enable Firefox&#8217;s session restore functionality: it&#8217;s in Options => General => Startup => &#8220;When Nightly starts&#8221; => Show my windows and tabs from last time.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/2180/tab-dragging-broken-in-firefox-8/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Restoring the history drop-down menu near the back button in Firefox and Opera</title>
		<link>http://notepad.patheticcockroach.com/2147/restoring-the-history-drop-down-menu-near-the-back-button-in-firefox-and-opera/</link>
		<comments>http://notepad.patheticcockroach.com/2147/restoring-the-history-drop-down-menu-near-the-back-button-in-firefox-and-opera/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 11:58:06 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=2147</guid>
		<description><![CDATA[I don&#8217;t know which browser started that s*** (if I had to make a bet, I&#8217;d say Chrome, as usual for this kind of c***py UI tweaks), but some months ago all browsers history buttons started looking like this: This navigation toolbar is becoming more and more useless&#8230; Of course, the drop-down history menu is [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know which browser started that s*** (if I had to make a bet, I&#8217;d say Chrome, as usual for this kind of c***py UI tweaks), but some months ago all browsers history buttons started looking like this:</p>
<div style="text-align:center;"><img src="http://img.patheticcockroach.com/01/back_button_nodropdown-fx_op_iron_msie.png" alt="Back and forward buttons of Firefox, Opera, SRWare Iron (Chrome), and Internet Explorer" width="90" height="279"/></div>
<p>This navigation toolbar is becoming more and more useless&#8230; Of course, the drop-down history menu is still there, accessible either by holding the left mouse button <strong>or by right clicking</strong> (I actually found out about this one pretty recently, it&#8217;s decently comfortable IMO, but not possible in Opera). Still, I liked to have a dedicated button so I looked for ways to add them back in Opera and Firefox.</p>
<p>In Opera, you can add/remove buttons from the navigation bar by right-clicking on it, then go to <em>Customize => Appearance&#8230; => Buttons => Browser</em> and drag and drop the normal back and forward buttons. To remove the buttons with no down arrow (actually, that&#8217;s just one button), right-click it, then go to <em>Customize => Remove from toolbar</em>.</p>
<p>In Firefox, you need to use an extension, for instance <a href="https://addons.mozilla.org/en-us/firefox/addon/backforedrop/">Backward Forward History Dropdown</a>. Yeah, that&#8217;s a one-line solution&#8230; not too satisfying, though, the need to add yet one more extension every time they dumbly remove an important feature.</p>
<p>Re-sults! <img src='http://notepad.patheticcockroach.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div style="text-align:center;"><img src="http://img.patheticcockroach.com/01/back_button_withdropdown-fx_op.png" alt="Back and forward buttons of Firefox, Opera, SRWare Iron (Chrome), and Internet Explorer but this time with the drop-down menu arrow restored in Fx and Opera" width="124" height="275"/></div>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/2147/restoring-the-history-drop-down-menu-near-the-back-button-in-firefox-and-opera/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>extensions.checkCompatibility: they did it AGAIN</title>
		<link>http://notepad.patheticcockroach.com/2109/extensions-checkcompatibility-they-did-it-again/</link>
		<comments>http://notepad.patheticcockroach.com/2109/extensions-checkcompatibility-they-did-it-again/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 06:14:39 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=2109</guid>
		<description><![CDATA[Remember a couple of years ago when some smart-ass decided it would be wise to cripple one of the most useful configuration option (extensions.checkCompatibility) of Firefox? Well, thanks to the new ludicrous versioning scheme (so, at least this joke had one positive impact) they finally acknowledged that yes, after all, this extensions.checkCompatibility.EVERY-SINGLE-FREAKING-VERSION-NUMBER setting isn&#8217;t the [...]]]></description>
			<content:encoded><![CDATA[<p>Remember a couple of years ago when some smart-ass decided it would be wise to cripple one of the most useful configuration option (<a href="http://notepad.patheticcockroach.com/400/extensions-checkcompatibility-broken/">extensions.checkCompatibility</a>) of Firefox? Well, thanks to the new ludicrous versioning scheme (so, at least this joke had one positive impact) they finally <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=659048">acknowledged</a> that yes, after all, this <strong>extensions.checkCompatibility.EVERY-SINGLE-FREAKING-VERSION-NUMBER</strong> setting isn&#8217;t the most convenient. But of course, instead of simplifying it they made it even more confusing, even though this time it&#8217;s not too serious as it&#8217;s a one-time fix (until they decide to break it again, of course): as of now (actually, as of a few months ago but I hadn&#8217;t used the Fx nightlies for a while), to disable version compatibility checking for extensions in the nightlies, <a href="http://forums.mozillazine.org/viewtopic.php?f=23&#038;t=2249249">you need to set <strong>extensions.checkCompatibility.nightly</strong> to false</a>. That&#8217;s kind of a step in the right direction for me, you&#8217;d say. Well, here&#8217;s the catch: the usual <strong>extensions.checkCompatibility.versionnumber</strong> don&#8217;t work anymore in nightlies&#8230; so this is actually yet another additional setting to do one same thing (removing version checking for extensions for any Fx version). Bah, that&#8217;s the spirit of Firefox, hey&#8230;<br />
Let&#8217;s not forget to mention that they actually managed to create a &#8220;bug&#8221; <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=669541">with that setting</a> (a pity they fixed it, I thought this was actually a cool feature <img src='http://notepad.patheticcockroach.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ). During this time, Chrome is working on doing some not-as-useless stuff (they&#8217;re done with removing every possible things from the URL bar so they can&#8217;t possibly be doing more useless things now), no wonder they&#8217;re taking the lead in the market share race.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/2109/extensions-checkcompatibility-they-did-it-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

