What the minimum basic setup required to begin developing a Firefox extension?
|
7
|
|||||||
|
|
|
Step 1: Use the Extension Wizard to generate all the necessary files. Step 2: Extract the downloaded files into your development area. Step 3: Create a text file in your profile's extensions folder named according to the em:id in the downloaded install.rdf file, put the full path to your extracted files in it then restart Firefox (delete the text file to uninstall if necesary). |
||
|
|
|
|
Here are the reasons why someone would want to create a minimal firefox extension.
|
||
|
|
|
|
Interesting information. |
||
|
|
|
|
To start another instance of firefox with a different profile you can use the following command:
This way you can have 2 different firefox running and use one for testing extensions without messing with the one you use regularly. |
||
|
|
|
|
I suggest testing on the Portable edition of Firefox. |
||||
|
|
|
Precaution: In order to prevent messing with your default firefox experience try the tip below on a newly created disposable test account. Step 1: Create a new firefox profile. For this you need to invoke the Profile Manager via command line option: firefox.exe -profilemanager Click on the 'Create Profile' button of the Profile Manager, which will invoke a wizard. Give the profile a name. Use the 'Choose Folder' button and save the profile in a appropriately named folder. This folder is where we are going to create our quick and dirty firefox extension. Step 2: Change directory to 'extensions' folder within the profile folder created in Step 1. Now we need to give the firefox extension a globally unique name. Email like names are good enough for that. For example, OneMinuteFirefoxExtension@ec29.com will be good enough name for the extension. Under the 'extensions' folder, create a folder with its name as the just chosen unique name. Step 3: Create files chrome.manifest and install.rdf You can copy paste the sample here with the names, description altered appropriately. chrome.manifest: content 1mffext chrome/ and install.rdf:
Step 4 Create folder called chrome and create a text file called test.txt within the folder. files in the folder will be accessible via chrome url like chrome://1mffext/content/test.txt Now the bare minimum extension is ready. Regular html/javascript files can be used to create the functionality desired. Testing the Extension: Invoke firefox to use the profile created above.
I have created a googlecode project to share the resultant code created following the steps above. The code along with run scripts are available at Just a Minute Firefox Extension Sim-OnDemand- personal virtual world as a Service's launcher application is an example of an application packaged and distributed using this method. |
|||
|
