<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to create Firefox extensions</title>
	<atom:link href="http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/feed/" rel="self" type="application/rss+xml" />
	<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/</link>
	<description>firefox extension development</description>
	<lastBuildDate>Tue, 09 Mar 2010 21:24:29 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: wspruijt</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15683</link>
		<dc:creator>wspruijt</dc:creator>
		<pubDate>Sat, 03 Oct 2009 13:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15683</guid>
		<description>This tutorial is great! I managed to port the build script to osx. Maybe it&#039;s not the most elegant way, but this works:

#!/bin/sh
EXTNAME=${PWD##*/}
echo $EXTNAME
mkdir build
mkdir build/chrome
cd chrome
7za a -tzip &quot;$EXTNAME.jar&quot; * -r -mx=0
mv &quot;$EXTNAME.jar&quot; ../build/chrome
cd ..
cp install.* build
cd build
7za a -tzip &quot;$EXTNAME.xpi&quot; * -r -mx=9
mv $EXTNAME.xpi ../
cd ..
rm -r build</description>
		<content:encoded><![CDATA[<p>This tutorial is great! I managed to port the build script to osx. Maybe it&#8217;s not the most elegant way, but this works:</p>
<p>#!/bin/sh<br />
EXTNAME=${PWD##*/}<br />
echo $EXTNAME<br />
mkdir build<br />
mkdir build/chrome<br />
cd chrome<br />
7za a -tzip &#8220;$EXTNAME.jar&#8221; * -r -mx=0<br />
mv &#8220;$EXTNAME.jar&#8221; ../build/chrome<br />
cd ..<br />
cp install.* build<br />
cd build<br />
7za a -tzip &#8220;$EXTNAME.xpi&#8221; * -r -mx=9<br />
mv $EXTNAME.xpi ../<br />
cd ..<br />
rm -r build</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJ</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15682</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Mon, 31 Aug 2009 09:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15682</guid>
		<description>Excellent post. Thanks a ton.</description>
		<content:encoded><![CDATA[<p>Excellent post. Thanks a ton.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saika</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15679</link>
		<dc:creator>saika</dc:creator>
		<pubDate>Fri, 24 Jul 2009 10:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15679</guid>
		<description>hi, this tutorial is just great!! i am new to this sort of thing and it was very easy for me to understand how to create an extension. but i came up against a problem. when i open the extension.xpi file in firefox it tries installing the extension but thena  message pops up saying:
------------------------------------------------------
&quot;Incompatible extension&quot;

&quot;Hello, world!&quot; will not be installed because it does not provide secure updates
------------------------------------------------------
i am using Firefox 3.0.11

what should i do to overcome this? i am building an extension for a project and would really appreciate some help as soon as possible. 

thanks :)</description>
		<content:encoded><![CDATA[<p>hi, this tutorial is just great!! i am new to this sort of thing and it was very easy for me to understand how to create an extension. but i came up against a problem. when i open the extension.xpi file in firefox it tries installing the extension but thena  message pops up saying:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
&#8220;Incompatible extension&#8221;</p>
<p>&#8220;Hello, world!&#8221; will not be installed because it does not provide secure updates<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
i am using Firefox 3.0.11</p>
<p>what should i do to overcome this? i am building an extension for a project and would really appreciate some help as soon as possible. </p>
<p>thanks :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikolay</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15476</link>
		<dc:creator>nikolay</dc:creator>
		<pubDate>Mon, 12 Jan 2009 10:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15476</guid>
		<description>Hello, Thank you for this tutorial, it has helped me in getting started. I am still having a problem trying to get the update to install. I am getting the firefox message after I restart firefox.

&#039;Firefox could not install this item because of a failure in Chrome Registration. Please contact the author about this problem.&#039;

Has anyone had this problem before?</description>
		<content:encoded><![CDATA[<p>Hello, Thank you for this tutorial, it has helped me in getting started. I am still having a problem trying to get the update to install. I am getting the firefox message after I restart firefox.</p>
<p>&#8216;Firefox could not install this item because of a failure in Chrome Registration. Please contact the author about this problem.&#8217;</p>
<p>Has anyone had this problem before?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: walker6o9</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15468</link>
		<dc:creator>walker6o9</dc:creator>
		<pubDate>Mon, 24 Nov 2008 22:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15468</guid>
		<description>Hi, I think you&#039;re firefox ext tutorial is awesome, but I&#039;m having some trouble creating the actual .xpi file.  When I run buildbat, it doesn&#039;t create an xpi file (or any other file) for me, and I get the following readout error:

C:\&gt;c:\firefoxdev\build.bat thatshot

C:\cd C:\\thatshot

C:\&gt;cd C:\\thatshot\chrome

C:\thatshot\chrome&gt;7z a -tzip thatshot.jar * -r

7-Zip 4.57 Copyright  1999-2007 Igor Pavlov 2007-12-06

Scanning

Updating archive thatshot.jar

Compressing content\thatshot\about.xml
Compressing content\thatshot\contents.rdf
Compressing content\thatshot\thatshotOverlay.js
Compressing content\thatshot\thatshotOverlay.xul
Compressing skin\classic\contents.rdf
Compressing skin\classic\gmapit.png
Compressing skin\classic\gmapitb.png
Compressing thatshot.jar

Everything is Ok

C:\thatshot\chrome&gt;cd ..

C:\thatshot&gt;7z a -tzip thatshot.xpi * -ir!*.jr -x!*.zip -x!*.xpi

7-Zip 4.57 Copyright  1999-2007 Igor Pavlov 2007-12-06
Scanning

Creating archive thatshot.xpi

Compressing content\thatshot\about.xml
Compressing content\thatshot\contents.rdf
Compressing content\thatshot\thatshotOverlay.js
Compressing content\thatshot\thatshotOverlay.xul
Compressing skin\classic\contents.rdf
Compressing skin\classic\gmapit.png
Compressing skin\classic\gmapitb.png
Compressing thatshot.jar

Everything is Ok

C:\thatshot&gt;del C:\thatshot\chrome\thatshot.jar
The network path was not found</description>
		<content:encoded><![CDATA[<p>Hi, I think you&#8217;re firefox ext tutorial is awesome, but I&#8217;m having some trouble creating the actual .xpi file.  When I run buildbat, it doesn&#8217;t create an xpi file (or any other file) for me, and I get the following readout error:</p>
<p>C:\&gt;c:\firefoxdev\build.bat thatshot</p>
<p>C:\cd C:\\thatshot</p>
<p>C:\&gt;cd C:\\thatshot\chrome</p>
<p>C:\thatshot\chrome&gt;7z a -tzip thatshot.jar * -r</p>
<p>7-Zip 4.57 Copyright  1999-2007 Igor Pavlov 2007-12-06</p>
<p>Scanning</p>
<p>Updating archive thatshot.jar</p>
<p>Compressing content\thatshot\about.xml<br />
Compressing content\thatshot\contents.rdf<br />
Compressing content\thatshot\thatshotOverlay.js<br />
Compressing content\thatshot\thatshotOverlay.xul<br />
Compressing skin\classic\contents.rdf<br />
Compressing skin\classic\gmapit.png<br />
Compressing skin\classic\gmapitb.png<br />
Compressing thatshot.jar</p>
<p>Everything is Ok</p>
<p>C:\thatshot\chrome&gt;cd ..</p>
<p>C:\thatshot&gt;7z a -tzip thatshot.xpi * -ir!*.jr -x!*.zip -x!*.xpi</p>
<p>7-Zip 4.57 Copyright  1999-2007 Igor Pavlov 2007-12-06<br />
Scanning</p>
<p>Creating archive thatshot.xpi</p>
<p>Compressing content\thatshot\about.xml<br />
Compressing content\thatshot\contents.rdf<br />
Compressing content\thatshot\thatshotOverlay.js<br />
Compressing content\thatshot\thatshotOverlay.xul<br />
Compressing skin\classic\contents.rdf<br />
Compressing skin\classic\gmapit.png<br />
Compressing skin\classic\gmapitb.png<br />
Compressing thatshot.jar</p>
<p>Everything is Ok</p>
<p>C:\thatshot&gt;del C:\thatshot\chrome\thatshot.jar<br />
The network path was not found</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ralst</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15467</link>
		<dc:creator>ralst</dc:creator>
		<pubDate>Mon, 24 Nov 2008 09:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15467</guid>
		<description>I found this link for a how-to on disabling the &quot;does not provide secure updates&quot; error:

http://www.ideashower.com/learned/how-to-disable-will-not-be-installed-because-it-does-not-provide-secure-updates-warning-in-firefox-3/

Works a charm, though I did have to change install.rdf&#039;s MaxVersion to 9.9 (as it says to do in the tutorial) in order to get Firefox 3 to load the extension.

Thanks for this great tutorial, Mr. Eric. :-)</description>
		<content:encoded><![CDATA[<p>I found this link for a how-to on disabling the &#8220;does not provide secure updates&#8221; error:</p>
<p><a href="http://www.ideashower.com/learned/how-to-disable-will-not-be-installed-because-it-does-not-provide-secure-updates-warning-in-firefox-3/" rel="nofollow">http://www.ideashower.com/learned/how-to-disable-will-not-be-installed-because-it-does-not-provide-secure-updates-warning-in-firefox-3/</a></p>
<p>Works a charm, though I did have to change install.rdf&#8217;s MaxVersion to 9.9 (as it says to do in the tutorial) in order to get Firefox 3 to load the extension.</p>
<p>Thanks for this great tutorial, Mr. Eric. :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ruddin_hd</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15466</link>
		<dc:creator>ruddin_hd</dc:creator>
		<pubDate>Sun, 16 Nov 2008 16:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15466</guid>
		<description>and this is the error i m getting for ur add on
Hello, world!&quot; will not be installed because it does not provide secure updates</description>
		<content:encoded><![CDATA[<p>and this is the error i m getting for ur add on<br />
Hello, world!&#8221; will not be installed because it does not provide secure updates</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ruddin_hd</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15465</link>
		<dc:creator>ruddin_hd</dc:creator>
		<pubDate>Sun, 16 Nov 2008 16:02:07 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15465</guid>
		<description>hey it works but now firefox says tht it cannot find some .rdf file for installation(one file already exists..this is some other file named&quot;install-edd..rdf&quot;)...wht do i do??</description>
		<content:encoded><![CDATA[<p>hey it works but now firefox says tht it cannot find some .rdf file for installation(one file already exists..this is some other file named&#8221;install-edd..rdf&#8221;)&#8230;wht do i do??</p>
]]></content:encoded>
	</item>
</channel>
</rss>
