Mozilla’s spec for the new Account Manager addition that’s coming to Firefox 4
#firefox
Account Manager coming to Firefox
Account Manager coming to Firefox
“The Account Manager makes it incredibly easy for users to create new accounts with optional randomly generated passwords, and log into and out of them with just a click.”
How Firefox Contacts Auto-Discovery Works
How Firefox Contacts Auto-Discovery Works
Some cool details on real-world discovery for contact details.
FoxyProxy
“FoxyProxy is a free, open-source advanced proxy management tool that completely replaces Firefox’s limited proxying capabilities. It automatically switches an internet connection across one or more proxy servers based on URL patterns.”
Yip
“A Unified Notification System for the Web”, brings Growl-like notifications to the browser, which may be triggered via websites.
GreaseSpot
The documentation wiki for Greasemonkey. Lots of greasy monkey goodness.
Twitter Search Bookmarklet
Throughout the day, I’m likely to search Twitter a number of times. Being the lazy person that I am, I got sick of opening a new tab, typing search.twitter.com, hitting enter, waiting for the page, then typing my term and waiting for results. I already have a couple of other bookmarklets that I use all the time (one for loading up a Google Map, one for jumping to a PHP function name in the online reference), so I figured I’d knock up something to search Twitter. I’m using Firefox on a Mac, YMMV.
- Bookmark any page (seriously, any page).
- Put that bookmark into your Bookmarks Toolbar.
- Right click it and select Properties
- Change the Name to something like “Search Twitter”
- Change the Location to this (copy and paste it):
javascript:var%20d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0));if(!s.length){s=prompt('Search%20Twitter:','');}if(s){document.location.href='http://search.twitter.com/search?q='+escape(s);}else{void(0);}
- Save Changes
That’s it. Now click that link in your Bookmark Toolbar and it’ll prompt you for a search string. Enter anything and hit OK. If you happen to have some text on the page selected, it’ll automatically search for that text. Voila – Twitter Search.
XUL
XUL reference at the Mozilla developer center. Very handy for developing Firefox extensions.
How to develop a Firefox extension
How to develop a Firefox extension
Sweet tutorial breaking down the steps involved in writing a Firefox plugin/extension.
How to build a Firefox extension
How to build a Firefox extension
List of resources and details on how to get started building simple FF extensions, care of LifeHacker.