Jetpack/Modules: Difference between revisions
< Jetpack
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
Useful modules not in the core set. | Useful modules not in the core set. | ||
UI | Browser UI | ||
* [http://gitorious.org/addon-sdk/bugzilla-triage-scripts/blobs/master/lib/prompts.js Prompts], by Mcepl. See function promptFileOpenPicker for a file picker prompt. | * [http://gitorious.org/addon-sdk/bugzilla-triage-scripts/blobs/master/lib/prompts.js Prompts], by Mcepl. See function promptFileOpenPicker for a file picker prompt. | ||
* [http://hg.mozilla.org/users/avarma_mozilla.com/atul-packages/file/793c25db8523/packages/misc/lib/simple-feature.js Basic menu item], by Atul | * [http://hg.mozilla.org/users/avarma_mozilla.com/atul-packages/file/793c25db8523/packages/misc/lib/simple-feature.js Basic menu item], by Atul | ||
* [http://bit.ly/fODIfs set new-tab page content], by @dietrich | * [http://bit.ly/fODIfs set new-tab page content], by @dietrich | ||
* [https://bugzilla.mozilla.org/show_bug.cgi?id=615590 module for interacting with Panorama], work in progress, by Mitcho. | * [https://bugzilla.mozilla.org/show_bug.cgi?id=615590 module for interacting with Panorama], work in progress, by Mitcho. | ||
* [http://autonome.wordpress.com/2011/03/27/badged-widgets-with-the-firefox-4-add-on-sdk/ Badged Widgets], by @dietrich | |||
Web APIs | |||
* [https:// | * [https://github.com/mozilla/f1/blob/develop/extensions/firefox-share/src/modules/injector.js Add APIs to web content] (ie: extending the navigator object), from Mozilla F1 | ||
Browser Internals | |||
* [https://gist.github.com/669262 Awesomebar Search] - query the datasource that powers the Firefox awesomebar, by Dietrich (@dietrich) | * [https://gist.github.com/669262 Awesomebar Search] - query the datasource that powers the Firefox awesomebar, by Dietrich (@dietrich) | ||
* [https://gist.github.com/709681 Browser Commands] - search for and execute browser commands (eg: reload, zoom, bookmark page, open URL), by Dietrich (@dietrich) | * [https://gist.github.com/709681 Browser Commands] - search for and execute browser commands (eg: reload, zoom, bookmark page, open URL), by Dietrich (@dietrich) | ||
Async | Async JavaScript APIs | ||
* [https://github.com/Gozala/actor Actors] Generators based implementation of scala like Actor's for writing calbackless async code. by Irakli (@gozala) | * [https://github.com/Gozala/actor Actors] Generators based implementation of scala like Actor's for writing calbackless async code. by Irakli (@gozala) | ||
Revision as of 08:30, 11 April 2011
Useful modules not in the core set.
Browser UI
- Prompts, by Mcepl. See function promptFileOpenPicker for a file picker prompt.
- Basic menu item, by Atul
- set new-tab page content, by @dietrich
- module for interacting with Panorama, work in progress, by Mitcho.
- Badged Widgets, by @dietrich
Web APIs
- Add APIs to web content (ie: extending the navigator object), from Mozilla F1
Browser Internals
- Awesomebar Search - query the datasource that powers the Firefox awesomebar, by Dietrich (@dietrich)
- Browser Commands - search for and execute browser commands (eg: reload, zoom, bookmark page, open URL), by Dietrich (@dietrich)
Async JavaScript APIs
- Actors Generators based implementation of scala like Actor's for writing calbackless async code. by Irakli (@gozala)
- Promises Promises library by kriskowal
- Experimental implementation of promises on top of ES Harmony Proxies by Irakli (@gozala)
Misc
- Custom protocol handler by Atul, or another implementation by Irakli (@gozala)
- QR code utilities, by Hernán Colmeiro (@peregrinogris)
- Module for choosing and loading an external editor, by Dietrich (@dietrich), ported from the Ubiquity add-on
- Socket API Lib implementing nodejs's Socket API by Irakli (@gozala)
Wanted
- DirectoryWatcher: polls a directory, notifies listeners of events like file added, deleted, changed, etc.
- Badging: adds a badge to a Jetpack widget. Eg: number of unread messages. (thread on dev.platform about doing this