Mozilla has provided nice high level API in its Add-On SDK, where one can relatively easily write an extension, without need for any special knowledge about internals of Firefox – the general knowledge of Javascript, HTML and CSS plus very nice and detailed documentation of the SDK are basically enough.
However there are some functionalities, that are not available in SDK and then more effort is needed and XPCOM components have to be used via their JS interfaces. This requires bit more research, so I’d like to share one useful snippet of code – how to save string to file, which user has chosen via standard file picker dialogue: Continue reading Writing to file in Firefox Extension