«
DRX/installed
Installed Extensions
The proof is in the pudding as they say, and the purpose of this page is to list
all the Firefox Extensions I have installed on one of my client-side development
machines—thanks to Nickolay Ponomarev’s InfoLister.
How am I able to do this? Among some other interesting features, InfoLister allows me
to automatically upload an XML snapshot of the information it collects to this host.
The XML file contains some browser metadata, a list of the installed plugins,
themes and (what I’m after) every installed extension. These are stored
as a set of <ext> element nodes, containing attributes for the homepage URI, version
number, author and a description of the extension. Firefox maintains this list internally,
and the details are provided by each extension author as part of their RDF Install Manifest.
How does InfoLister do this? Well, the code is written in JavaScript (as you
would expect) and one function, gAddonsProvider(), collects all the XPI extensions
and themes, which are then stored in separate arrays. This process is fairly complicated,
but this is open-source software so why not dig in there and figure it out if
you’re interested? Depending on your option settings, InfoLister will
produce plain text, HTML, XML, and so on.
Once you have the XML data on your server, then what? Well, I suppose it depends on what you plan on doing with it. I wanted to stick to my guns and convert it to an XHTML unordered list and use my existing markup and CSS. One approach might be to use an XSLT stylesheet to transform the XML to XHTML. If I was maintaining a collection of these Firefox profiles I would consider generating the results by opening a JavaScript XMLHttpRequest connection to fetch the XML data, and then dynamically update the DOM.
I opted to use PHP to parse the XML, extract the extension data, and build an array
of <li> elements. If you’re running PHP 5, then I highly recommend using
SimpleXML for such tasks. As I am currently using PHP 5.2.5 on this box, I decided
to use Keith Devens’ XML Library, which expects a stream of XML data
(use file_get_contents() to read the file first) and then “unserializes”
the data into a PHP nested array. Keith provides a translator so you can see this process
in action. Here is my original XML, and the resulting PHP.
Once you have your PHP data structure, creating the list is as simple as looping through
the $ext array, pulling out the name, URI, author and description metadata, and
building the unordered list as you go. I’m using this function to build
the list below. Note that the $ext array consists of element pairs, each integer
index into the array holds the name of the extension and the associated (string) index
(array offset + ' attr') is another array that holds the metadata (attributes) for that
extension. Also notice I am skipping disabled extensions.
As you can see, the code returns a few other morsels. So if you’re curious about my browser version and platform information, I’m even willing to cough up the User Agent string:
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4
And some other tidbits:
The XML data was last uploaded on Friday, June 15th, 2007 @ 4:10 PM EST.
I have 33 enabled extensions installed.
What else could you do with this data? How about an RSS feed that returns your installed extensions? Not a bad idea, I’m constantly testing out new ones and removing others I no longer use.
If you have questions or comments, you can visit my my blog post on this topic.
So why not share your Firefox extension list? Here’s mine.
developer
extension
firefox
javascript
mozilla
php
rdf
rss
web
xhtml
xml
xslt
xul
My Firefox Extension List
- Adblock v0.5.3.043 — Filters ads from web-pages
- Adblock Filterset.G Updater v0.3.1.0 — Synchronizes Adblock with Filterset.G
- BugMeNot v1.3 — Bypass compulsory web registration with the context menu via www.bugmenot.com.
- Console² v0.3.7 — The next generation error console.
- CustomizeGoogle v0.60 — Enhance Google search results and remove ads and spam.
- CuteMenus2 v2.0 — Iconifies your menus and popups with XP skin.
- del.icio.us v1.2 — Keep, share and discover all your favorite things.
- Document Map v0.6.1 — Displays the current page's heading structure in the sidebar, allowing rapid navigation between sections
- DOM Inspector v1.8.1.4 — Inspects the structure and properties of a window and its contents.
- Download Manager Tweak v0.7.2 — A modification of the Firefox download manager that changes its appearance and allows it to be opened in a separate window, a new tab, or the sidebar.
- Firebug v1.05 — Web Development Evolved
- Google Pagerank Status v0.9.8 — Display the Google PageRank in your browser's status bar.
- GooglePreview v2.1.5 — Localized description in *.properties file.
- Greasemonkey v0.7.20070607.0 — A User Script Manager for Firefox
- Html Validator v0.8.3.9 — Adds HTML validation to the View Page Source of the browser. The validation is done by Tidy from W3c.
- InfoLister v0.9f — Lists installed extensions and themes
- JavaScript Debugger v0.9.87 —
- Live HTTP Headers v0.13.1 — View HTTP headers of a page and while browsing.
- MR Tech Disable XPI Install Delay v2.4 — Disables default delay when installing extensions.
- Nightly Tester Tools v1.3b1 — Useful tools for the nightly tester.
- Operator v0.7 — Microformat Detection for Firefox
- Professor X v0.4.1 — See inside a page's head.
- Resizeable Form Fields v0.2.1 — Resize HTML form fields, including textareas, select boxes, and text fields.
- Restart Firefox v0.3 — Restart Firefox with ease
- Sage v1.3.10 — A lightweight RSS and Atom feed aggregator.
- Statusbar Clock v1.8.0 — Display the date and time in your browser's status bar.
- Tab Mix Plus v0.3.5.2 — Tab browsing with an added boost.
- Tab Preview v0.3 — Preview tab contents on mouseover
- Talkback v2.0.0.4 — Sends information about program crashes to Mozilla.
- UrlParams v2.01.02 — Displays the websides get/post parameters in the sidebar.
- View Cookies v1.6 — View cookies of the current web page.
- View Source Chart v2.6 — Creates a Colorful Chart of a Webpage's Rendered Source.
- Web Developer v1.1.4 — Adds a menu and a toolbar with various web developer tools.
Indexes

Last updated: Monday, December 4th, 2006 @ 7:23 PM EST [2006-12-05T00:23:25Z]























































































