We are happy to announce the release of Jetpack 0.7. Jetpack is a Mozilla Labs project which makes it possible for anyone who knows standard web skills (HTML, Javascript, CSS) to make Firefox add-ons.
Jetpack 0.7 is mainly a stability release with a new API thrown in: a unified first-run experience. Notable improvements include: debugging your Jetpack-enabled add-on can once again be done with Firebug; status bar widgets now look better; and the settings feature has a number of tweaks and fixes. With these bug fixes and improvements we hope to see even more innovative Jetpacks in addition to the hundreds already written.
First Run
When users install a jetpack authors can now specify a greeting page tailored to their jetpack. For example, as an author you can guide the user on how to use your jetpack, link to the jetpack’s homepage, or otherwise provide a wealth of rich information. The page can be defined as either HTML or a remote URL.
var manifest = {
firstRunPage: "http://example.com/myJetpack"
};

You can also define an event handler to be executed on first run.
jetpack.me.onFirstRun(function () {
jetpack.notifications.show("Oh boy, I'm installed!");
});
Full documentation is available.
Download
If you already have Jetpack installed, update to 0.7 via the “Find Updates” button in the add-ons manager. If you’re new to Jetpack, you can get Jetpack automatically by installing any Jetpacks or by downloading it directly from addons.mozilla.org.
Participate
Mozilla Labs is a virtual lab where people come together online to create, experiment and play with Web innovations for the public benefit. There are many ways to join the team and get involved:
- Report a bug
- Grab the source code and fix a bug or add a feature
- Discuss, debate, and add to the design in the Jetpack discussion group
- Join us in #jetpack on irc.mozilla.org
– Aza Raskin on behalf of the Jetpack development team.





