<?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>Xulforge Blog &#187; amo</title>
	<atom:link href="http://xulforge.com/blog/tag/amo/feed/" rel="self" type="application/rss+xml" />
	<link>http://xulforge.com/blog</link>
	<description>Xulforge projects, code, and more</description>
	<lastBuildDate>Mon, 06 Sep 2010 21:41:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Firefox 4 Add-on Compatibility presentation</title>
		<link>http://xulforge.com/blog/2010/07/firefox-4-add-on-compatibility-presentation/</link>
		<comments>http://xulforge.com/blog/2010/07/firefox-4-add-on-compatibility-presentation/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 17:45:56 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amo]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://xulforge.com/blog/?p=78</guid>
		<description><![CDATA[I&#8217;m presenting about Firefox 4 Add-on Compatibility at the Mozilla Summit a little later today. Here are the slides in PDF version for all of those interested. Firefox 4 for Add-on Developers For now, this is a pretty good reference if you want to start supporting the Firefox 4 betas in your add-ons. I&#8217;ll be [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m presenting about Firefox 4 Add-on Compatibility at the Mozilla Summit a little later today. Here are the slides in PDF version for all of those interested.</p>
<p><a href="http://xulforge.com/blog/wp-content/uploads/2010/07/Firefox-4-for-Add-on-Developers.pdf">Firefox 4 for Add-on Developers</a></p>
<p>For now, this is a pretty good reference if you want to start supporting the Firefox 4 betas in your add-ons. I&#8217;ll be elaborating on this subject through the following weeks, in the Add-ons Blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://xulforge.com/blog/2010/07/firefox-4-add-on-compatibility-presentation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>XPI v2 &#8211; Making Extension Development Easier</title>
		<link>http://xulforge.com/blog/2010/03/xpi-v2-making-ext-dev-easier/</link>
		<comments>http://xulforge.com/blog/2010/03/xpi-v2-making-ext-dev-easier/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 18:16:19 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[amo]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[jetpack]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[xulschool]]></category>

		<guid isPermaLink="false">http://xulforge.com/blog/2010/03/xpi-v2-making-extension-development-easier/</guid>
		<description><![CDATA[Note: this is just me throwing some ideas around. It is not an official proposal or spec. Having said that, I would like everyone that has interest in extension development to read this post and tell me what they think. I’ve been an extension developer for a long time, and I like to think that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Note:</strong> this is just me throwing some ideas around. It is not an official proposal or spec. Having said that, I would like everyone that has interest in extension development to read this post and tell me what they think.</p>
<p>I’ve been an extension developer for a long time, and I like to think that developing extensions is actually quite easy. Maybe it has to do with my C++/Java background, where setting up a development environment is much more involved than using a text editor and zipping some files together.<br />
That doesn’t negate the fact that the Mozilla add-ons platform is old, and showing its age. There are a number of problems with it that make it hard to take the first steps into add-on development, and it’s amazing how little has been done to solve them over the past years. These are the top 3 in my mind:</p>
<ul style="list-style-type: disc;">
<li>Extensions can’t be installed or uninstalled without a browser restart.
<ul style="list-style-type: hyphen;">
<li>That’s <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=256509">bug 256509</a>. Can it be fixed? Probably, but it would take a major development effort.</li>
</ul>
</li>
<li>The documentation about extension development is incomplete or outdated.
<ul style="list-style-type: hyphen;">
<li>I’m working on this in the <a href="https://developer.mozilla.org/en/XUL_School">XUL School</a> project, to be finished soon.</li>
</ul>
</li>
<li>Getting started with a basic “hello world” extension is too much effort: install.rdf, chrome.manifest, chrome JAR, content, skin, locale, defaults, OMG!</li>
</ul>
<p>The last point is the one I want to tackle in this post. There’s a ridiculous amount of boilerplate, redundant coding to do even for the most basic of add-ons, specially if you’re making an extension that should be skinable and localizable. These are the specific problems I’ve identified:</p>
<ul style="list-style-type: disc;">
<li>There are two manifest files: install.rdf and chrome.manifest, in completely different formats.</li>
<li>They are both defined in relatively obscure formats. The install.rdf file is one of the very few places where RDF is still used in Firefox. Sticking to a dying format (at least in this context) is a very bad idea.</li>
<li>The default chrome structure (with content, locale, skin, etc.) is too bureaucratic and inflexible, and almost completely redundant. Most add-ons have exactly the same structure, and having to define it every single time is unnecessary.</li>
</ul>
<p>I think we can reimagine add-on packaging in way that simple tasks can be performed in the simplest of ways, and so that it can scale to be as fine-tuned as it is today. So here are my ideas.<strong>#1 Merge install.rdf and chrome.manifest into a single file.</strong> What format should be used? I think JSON is as good as any other, and Mozilla already includes a native and very fast JSON parser. This manifest file could also match the <a href="https://jetpack.mozillalabs.com/sdk/0.1/docs/#guide/packaging">package.json manifests</a> being used for Jetpacks. <em>package.json</em> is actually a pretty good name for the manifest file. Perhaps the same standard can be use for Jetpacks and other add-ons?</p>
<p><strong>#2 Default to the root extension directory for chrome URLs in order to minimize chrome.manifest declarations.</strong> This means that a hello world extension could have this structure:</p>
<ul>
<li> helloworld.xpi2
<ul>
<li>package.json</li>
<li>overlay.xul</li>
<li>overlay.js</li>
<li>overlay.dtd</li>
</ul>
</li>
</ul>
<p>And the manifest file would be something like:</p>
<pre>{
  id : “helloworld@xulforge.com”,
  name : “Hello World!”,  
  type: “2”
  compatibility :    
    { id : “{ec8030f7-c20a-464f-9b0e-13a3a9e97384}”,
      minVersion : “3.5”,
      maxVersion : “3.6.*”},     
  domain: “helloworldchrome”,
  overlays:      
    { source : “chrome://helloworldchrome/content/overlay.xul”,
      target : “chrome://browser/content/browser.xul”}
}</pre>
<p>(Note: ‘compatibility’ and ‘overlays’ can be arrays when there’s more than one item. And the ‘domain’ value is a general declaration of the chrome domain.)</p>
<p>In this new system, you would be able to have all of your chrome files in the root directory and have no need for chrome directives other than declaring your main overlay. Also, in your root directory you can have a <em>locale</em> or <em>skin</em> folder that the system would know how to handle without any changes to the manifest. If a file isn’t found in the <em>locale</em> or <em>skin</em> folder, then the system falls back to the root directory as a last resource. Of course it would still be possible to declare specific locations for content, locale and skin in the manifest, in order to allow the “old style” to be used.</p>
<p>What about other special locations?</p>
<ul style="list-style-type: disc;">
<li><em>platform</em> and <em>components</em> will continue to have their special meanings.</li>
<li>JSM files can be handled just the same as chrome files, except that they use <em>resource://</em> instead of <em>chrome://</em>.</li>
<li>The default preferences file should also be moved to the root and have a predetermined name, like <em>defaultPrefs.js</em>.</li>
</ul>
<p><strong>#3 Installing the package.</strong> When you install an XPI file, the file is unpacked in your profile directory. It is common (but not mandatory) practice for chrome files to be packed in a JAR file, which remains packed after installation. According to <a href="http://autonome.wordpress.com/2010/03/10/firefox-extensions-and-performance/#comment-706">recent discussions about add-on performance</a>, it’s more efficient to keep files packed together. Instead of requiring authors to use the internal JAR approach, I think it makes more sense to require authors *not* to use JARs, and then keep the packed XPI in the profile on installation. Files that need to be extracted, like the manifest (maybe) and binary components (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=533038#c3">according to this</a>) can be extracted upon installation. This way it’s up to the platform and not the developer to look after performance.That’s it. Given that this new packaging system would be backwards-incompatible with the current one, it might make sense to change the file extension to something like XPI2, in order to make a clearer distinction between the 2. However it should suffice to look for the manifest file in order to identify the system in use.<br />
How hard is this to implement? I think #1 and #3 are fairly simple to implement.  #2 is the one that may present a bigger challenge, since the chrome URL system is something that runs deep in the Mozilla code, and changing its file location rules could cause breakage or vulnerabilities in non-add-on code. It might also be possible to limit the scope of these changes to add-ons only, but again, that may require lots of work. I’d love to hear the opinions of those who work on this part of the platform.</p>
<p>Some may wonder how does Jetpack fit into this whole idea. Well, Jetpack is a different platform, and it may very well replace traditional add-ons in the long term, but <a href="http://blog.mozilla.com/addons/2010/01/11/add-ons-are-here-to-stay/">we’re still a long ways to go</a>. We shouldn’t see Jetpack as some kind of competition, but as a lesson in what we can do better. If we improve add-on packaging to be closer to Jetpack packaging (I think this would be), then it’s a win for both, because it’ll make it less painful for developers to choose and switch between either platform.</p>
<p>I’d love to hear what experienced developers (both add-on and platform) think about this. I think there’s a real gain for novice developers in this if we were to implement it. I intentionally left out some details for brevity, but I’ll be happy to discuss them in the comments. Thanks for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://xulforge.com/blog/2010/03/xpi-v2-making-ext-dev-easier/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>And now they wait&#8230;</title>
		<link>http://xulforge.com/blog/2010/01/and-now-they-wait/</link>
		<comments>http://xulforge.com/blog/2010/01/and-now-they-wait/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 17:05:39 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amo]]></category>
		<category><![CDATA[editors]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://xulforge.com/blog/?p=33</guid>
		<description><![CDATA[I guess giving 3 month&#8217;s advanced notice wasn&#8217;t enough for most add-on authors. I guess this is partly our fault, and we should stress enough how important it is for them to stay up to date with Firefox new, or at least the Add-ons Blog. On Thursday, the update queue had about 80 add-on updates [...]]]></description>
			<content:encoded><![CDATA[<p>I guess giving 3 month&#8217;s <a href="http://blog.mozilla.com/addons/2009/10/30/time-to-update-your-add-ons-for-3-6/">advanced</a> <a href="https://forums.addons.mozilla.org/viewtopic.php?f=10&amp;t=93">notice</a> wasn&#8217;t enough for most add-on authors. I guess this is partly our fault, and we should stress enough how important it is for them to stay up to date with Firefox new, or at least the <a href="http://blog.mozilla.com/addons/">Add-ons Blog</a>.</p>
<p>On Thursday, the update queue had about 80 add-on updates in line to be reviewed. This is a short as it&#8217;s been for a very long time. Today it stands close to 200 updates, and will continue to grow in the following couple of weeks. All authors are now rushing out updates because they just realized Firefox 3.6 is out.</p>
<p>Well, now it&#8217;s up to the editor team to catch up. It&#8217;ll take a while, I think. Authors that decided to update after the 3.6 release will now have to wait. It&#8217;s bad for everyone, and the result of bad communication. That&#8217;s something we&#8217;ll need to work on.</p>
]]></content:encoded>
			<wfw:commentRss>http://xulforge.com/blog/2010/01/and-now-they-wait/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Jetpack, Personas, and the future</title>
		<link>http://xulforge.com/blog/2010/01/jetpack-personas-and-the-future/</link>
		<comments>http://xulforge.com/blog/2010/01/jetpack-personas-and-the-future/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 18:50:53 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amo]]></category>
		<category><![CDATA[editors]]></category>
		<category><![CDATA[jetpack]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[personas]]></category>

		<guid isPermaLink="false">http://xulforge.com/blog/?p=31</guid>
		<description><![CDATA[Mike Connor&#8217;s post on Jetpack and Personas has brought up lots of debate surrounding the future of the add-ons ecosystem. Extension developers are concerned about the future of XUL and the extensions they&#8217;ve spent so much time and effort on. Others are concerned about the future of the platform and its openness. I&#8217;d like to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://steelgryphon.com/blog/2010/01/09/on-personas-and-themes/">Mike  Connor&#8217;s post on Jetpack and Personas</a> has brought up lots of debate  surrounding the future of the add-ons ecosystem. Extension developers  are concerned about the future of XUL and the extensions they&#8217;ve spent  so much time and effort on. Others are concerned about the future of the  platform and its openness. I&#8217;d like to chime in as a veteran extension  developer and recent addition to MoCo. This is <strong>not</strong> an official statement, just my views on the situation.</p>
<p>First of all, let me be very clear about this: there is no short term  plan to eliminate the extension platform as we know it. XUL and XPCOM  run deep in Firefox. They <em>are</em> Firefox. Eliminating the  technologies that make extensions possible would require a rewrite of  pretty much everything in the platform, which is massive. I&#8217;m not saying  this couldn&#8217;t happen some time in the future (I don&#8217;t know, really),  but it isn&#8217;t something that can be accomplished within a few weeks, or  even a few months. It&#8217;s something that requires a great deal of planning  and the collaboration of the whole community. Extension developers  shouldn&#8217;t worry about their add-ons being obsolete overnight.</p>
<p>We should all look into the future, though. Not as something that  we&#8217;ll have to accept, but as something we can shape. Jetpack and  Personas are still experiments in many ways, and there&#8217;s much we can do  to make them what we want them to be. I personally doubt they will ever  reach the point where they will replace the current add-on options, but I  am confident that they can come very close, and that&#8217;s a big win for  everyone.</p>
<h2>Jetpack</h2>
<p>The goals of the Jetpack project are ambitious: no restarts for  install /  uninstall, a clean and more stable API, complete security,  and a much easier  development experience. They&#8217;re so ambitious that to  think all of these can be accomplished while preserving the flexibility  of the current platform would be naive at best.</p>
<p>There are no stable APIs. You can make higher abstractions that are  less likely to change. But they <em>will</em> change. Jetpack only makes  its add-ons dependent on its API, instead of the XUL/XPCOM platform. So,  instead of updating your add-on to the next Firefox version, you&#8217;ll  update it to the next version of Jetpack, which should happen much less  often. That is of course assuming there will be some sort of versioning  of the Jetpack API. If that&#8217;s not the case, well, then we have bigger  problems to be concerned about.</p>
<p>Jetpack, unlike XUL and XPCOM, is not a fully open system. It can&#8217;t  be. Not without sacrificing the security it&#8217;s meant to bring. As a  secure system, it should be closed by default, enabling through its API  only the features that are considered to be safe and necessary. This  limits add-on creativity to the API designers&#8217; imaginations, as opposed  to the developers&#8217;. On the other hand, in the current system extensions  can do pretty much anything. They can read, write and execute files.  They can change your preferences and access your saved passwords. They  can monitor your online activities and send information to third  parties. The only real protection between you and the extensions you  install is the review system that all of them have to go through in  order to be publicly listed on AMO. A group of reviewers (also known as  editors) make sure these extensions are safe to use and respect user  choice. Which one is better? To me, the answer is simple: if it&#8217;s  possible on Jetpack, use Jetpack. It&#8217;s simpler and safer. If it isn&#8217;t,  then fall back to extensions, where you have almost limitless control.</p>
<p>Jetpack add-ons <em>will</em> be easier to develop, and it <em>will</em> be possible to install and remove them without restarts. This is a huge  win for users and developers. Many, if not most add-ons will be easily  portable to this new platform, and they will benefit from it. It remains  to be seen, however, if highly complex (and extremely popular) add-ons  like AdBlock Plus, NoScript and Firebug will be able to live in the  Jetpack world. These extensions are strongly tied to the platform, and  their interactions would be very hard to translate into a general use  API. Maybe we can implement <code>jetpack.magic.doWhatNoScriptDoes</code> <img src='http://xulforge.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<h2>Personas</h2>
<p>Personas are not even close to being a replacement for themes.   Personas allow some very basic skinning using header and footer images   and setting font colors for the main toolbox. Surely they could be   extended to include images for the toolbar icons and some more advanced   customizations, but that&#8217;s not the case now, and even then they  wouldn&#8217;t be a complete replacement for themes. Themes can change the  appearance of the application in very significant ways, and this can&#8217;t  be accomplished without the complexity inherent in theme development.  So, theme developers, you&#8217;re not done yet either.</p>
<h2>The future</h2>
<p>I think the future for extensions and themes is still bright. Jetpack  and Personas have shown us how things can be different, and opening the  field for new development and competition is a win for all.</p>
<p>There&#8217;s much we can do to improve the &#8220;classic&#8221; add-on world, in the  area of documentation and tutorials, and even <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=256509">in the  platform itself</a>. We&#8217;re being shown how to improve. We should take  this as a call to action, and improve. Let&#8217;s work on the platforms that  will support the development of the future, but let&#8217;s not forget the  ones that are still active and thriving.</p>
<p>Let&#8217;s not forget how we got here.</p>
]]></content:encoded>
			<wfw:commentRss>http://xulforge.com/blog/2010/01/jetpack-personas-and-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wrapping loose variables and functions in Add-ons</title>
		<link>http://xulforge.com/blog/2009/08/wrapping-loose-variables-and-functions-in-add-ons/</link>
		<comments>http://xulforge.com/blog/2009/08/wrapping-loose-variables-and-functions-in-add-ons/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 23:33:13 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amo]]></category>
		<category><![CDATA[editors]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://xulforge.com/blog/?p=17</guid>
		<description><![CDATA[We (AMO Editors) have traditionally rejected updates or nominations on add-ons that don&#8217;t follow the wrapping rule for variables and functions. This is an important rule IMO because the possible compatibility conflicts are very real and possibly damaging to user experience. Enforcing good user experience and code quality is part of our responsibility as editors, [...]]]></description>
			<content:encoded><![CDATA[<p>We (AMO Editors) have traditionally rejected updates or nominations on add-ons that don&#8217;t follow the wrapping rule for variables and functions. This is an important rule IMO because the possible compatibility conflicts are very real and possibly damaging to user experience. Enforcing good user experience and code quality is part of our responsibility as editors, so I think this rule should not be removed or lessened in any way.</p>
<p>This discussion came up due to a denied update for Text Formating Toolbar 0.1.4.11. I was requested to come up with a POC that demonstrates how name conflicts can cause problems, so I created this add-on, which conflicts with Text Formatting Toolbar using seemingly harmless code. Here&#8217;s the link:</p>
<p><a title="Name Conflict Extension" href="http://xulforge.com/blog/wp-content/uploads/2009/08/nameconflict.xpi">Name Conflict</a></p>
<p>If you install this with the Text Formatting Toolbar, you&#8217;ll notice that the bold, italics, code and color features are broken.</p>
<p>Here&#8217;s the code in my overlay:</p>
<pre>window.addEventListener(
  "load",
  function() {
    window.setTimeout(
      function () {
        formatItalics = "i";
        formatBold = "b";
        formatColor = "white";

        formatCode =
          function(aString) {
            if (typeof(aString) != "string") alert('Invalid Code!'); }
      },
      100);
  },
  true);</pre>
<p>As you can see, it&#8217;s fairly simple. The load event and setTimeout call are only used to make sure that it is the other extension and not this one the one that experiences the compatibility problems. <strong>If two add-ons use the same names in the global scope, then one is going to experience problems in one way or another.</strong> There&#8217;s nothing more to it.</p>
<p>Obviously I can intentionally create an add-on that causes conflicts with any other add-ons, but I hope you see past this and realize that the code I posted could very well be written by another author who is unaware of the rules we enforce. This is what we look after, and this is why we should reject global namespace pollution in almost all instances.</p>
]]></content:encoded>
			<wfw:commentRss>http://xulforge.com/blog/2009/08/wrapping-loose-variables-and-functions-in-add-ons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Extension update</title>
		<link>http://xulforge.com/blog/2009/07/extension-update/</link>
		<comments>http://xulforge.com/blog/2009/07/extension-update/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 21:27:41 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[amo]]></category>
		<category><![CDATA[donations]]></category>
		<category><![CDATA[extend firefox]]></category>
		<category><![CDATA[fire.fm]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://xulforge.com/blog/?p=13</guid>
		<description><![CDATA[Recently I&#8217;ve been occupying myself with several Firefox extension projects: Most of all, I&#8217;ve been contributing to the AMO editor team to keep the add-on review queues down to a manageable size. There&#8217;s a great deal of new submissions and updates due to the release of Firefox version 3.5. There are hundreds of updates that [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been occupying myself with several Firefox extension projects:</p>
<ol>
<li>Most of all, I&#8217;ve been contributing to the <a href="http://addons.mozilla.org">AMO</a> editor team to keep the add-on review queues down to a manageable size. There&#8217;s a great deal of new submissions and updates due to the release of Firefox version 3.5. There are hundreds of updates that are minimal to non existent compatibility changes, so I&#8217;ve been able to review close to 200 updates on this month alone. I enjoy my work with the editor team, specially because I&#8217;ve very fond of doing code review and being ruthlessly critical. It&#8217;s in my nature, what can I say&#8230; There are plans for <a href="http://blog.mozilla.com/addons/2009/07/01/removing-the-sandbox/">removing the AMO sandbox</a>, which I find intriguing, to say the least. I wonder how that will change the editor group and their work.</li>
<li>The <a href="http://labs.mozilla.com/contests/extendfirefox3.5/index.php">Extend Firefox 3.5</a> competition has been officially announced. With an October deadline, it includes several new interesting categories to compete in. Jose and I are already working on Fire.fm 1.3, which will be our entry for best extension update. There&#8217;s a great deal of new features we&#8217;ll be putting into it, which I think will greatly improve our user experience. We&#8217;re also working on a few ideas for new add-ons. I hope to be able to submit a couple of entries to increase our chances of winning.</li>
<li>Finally, the <a href="http://blog.mozilla.com/addons/2009/07/15/firefox-add-ons-contributions-pilot/">Add-ons Contributions pilot</a> was introduced to AMO. This enabled add-on authors to request donations for their project right on AMO, giving our donation links more exposure and possibly allowing a few authors to remove donation requests from their add-on UI, which is always a loss for user experience. We have activated contributions for Fire.fm, and so far the response has been pretty good. We&#8217;re very happy about it and hope people will continue helping us out.</li>
</ol>
<p>I still feel in &#8216;break mode&#8217;, and hope to start working in full gear soon. There&#8217;s so much I want to do, and I still need to get everything sorted out. More updates soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://xulforge.com/blog/2009/07/extension-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->