<?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>Mon, 15 Mar 2010 12:57:05 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Computer Repair Milnrow</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15758</link>
		<dc:creator>Computer Repair Milnrow</dc:creator>
		<pubDate>Mon, 15 Mar 2010 12:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15758</guid>
		<description>That the install.rdf from the downloadable xpi file is a bit different than the source in the article</description>
		<content:encoded><![CDATA[<p>That the install.rdf from the downloadable xpi file is a bit different than the source in the article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: escorts sydney</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15757</link>
		<dc:creator>escorts sydney</dc:creator>
		<pubDate>Mon, 15 Mar 2010 03:53:58 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15757</guid>
		<description>i am building an extension for a project and would really appreciate some help as soon as possible</description>
		<content:encoded><![CDATA[<p>i am building an extension for a project and would really appreciate some help as soon as possible</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: megamall147</title>
		<link>http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/comment-page-6/#comment-15756</link>
		<dc:creator>megamall147</dc:creator>
		<pubDate>Mon, 15 Mar 2010 03:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/#comment-15756</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.</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.</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>
