Jetpack/Cookbook: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(Created page with "This page lists add-ons which people have created using the Add-on SDK and the Online Builder. If you've written an add-on using the SDK or the Builder, please feel free to shar...")
 
No edit summary
Line 1: Line 1:
This page lists add-ons which people have created using the Add-on SDK and the Online Builder.
This page lists code snippets showing you how to accomplish specific tasks using the Add-on SDK and the Online Builder.
 
If you've written an add-on using the SDK or the Builder, please feel free to share a link to it here!


{| class="fullwidth-table sortable"
{| class="fullwidth-table sortable"
Line 16: Line 14:
|https://gist.github.com/970120
|https://gist.github.com/970120
|define a button, add it to the webpage, attach a listener and execute a simple action when clicked.
|define a button, add it to the webpage, attach a listener and execute a simple action when clicked.
|-
| Grooveshark Remote Control
| [[User:Peregrino|Hernán Rodríguez Colmeiro]]
|1.0b4
|https://github.com/peregrinogris/Grooveshark-Remote-Control/
|Full featured extension to control Grooveshark from your status bar.
|-
| Skyedit
| Irakli Gozalishvili
| 1.0RC3
| https://github.com/Gozala/sky-edit
| Skyedit is an editor similar to view-source, it allows edit-source
|-
| About Downloads
| Irakli Gozalishvili
| 1.0RC3
| https://github.com/Gozala/about-downloads-addon
| A replacement for Firefox Downloads manager
|-
| jep4repl
| Irakli Gozalishvili
| 1.0RC3
| https://github.com/Gozala/jep4repl
| An interactive javascript shell
|-
| Weather Example
| Alexandre Poirot
| 1.0RC3
| https://github.com/ochameau/weather-example
| SDK example showing a weather widget
|-
| Tree tabs
| Alexandre Poirot
| 1.0RC3
| https://github.com/ochameau/weather-example
| simple equivalent to tree-style tabs
|-
| awesomebar.js
| Dietrich Ayala
| 1.0b5
| https://github.com/autonome/Jetpack-Modules/blob/master/awesomebar.js
| Jetpack module to extend Firefox's awesomebar
|-
| Github+Bugzilla
| Dietrich Ayala
|
| https://addons.mozilla.org/en-US/firefox/addon/github-tweaks-for-bugzilla/
| Tweaks for Github and Bugzilla integration
|-
| BadgedWidget.js
| Dietrich Ayala
|
| https://github.com/autonome/Jetpack-Modules/blob/master/BadgedWidget.js
| Jetpack module that allows you to badge a widget
|-
| cmd
| Dietrich Ayala
|
| https://github.com/autonome/cmd
| Add-on for quick command execution from Firefox
|}
|}

Revision as of 19:18, 16 June 2011

This page lists code snippets showing you how to accomplish specific tasks using the Add-on SDK and the Online Builder.

Title Author SDK Version Location Description
How to create a button on a webpage Bogo 1.0b5 https://gist.github.com/970120 define a button, add it to the webpage, attach a listener and execute a simple action when clicked.