Difference between revisions of "/MozAddOnSDK"

From Interaction Station Wiki
Jump to navigation Jump to search
Line 18: Line 18:
 
'''3.''' You now should see something like this in your command promp:
 
'''3.''' You now should see something like this in your command promp:
 
   ''(addon-sdk)~/mozilla/addon-sdk >''
 
   ''(addon-sdk)~/mozilla/addon-sdk >''
 +
 +
'''4.'''Let's see if everything is installed! Type:
 +
  ''cfx''
 +
You should see something like Usage: cfx [options] [command] followed by many lines.
 +
 +
[https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Getting_started And here's how you can create a simple add-on.]
 +
 +
Other useful links:
 +
*http://www.allaboutcookies.org/
 +
*https://developer.mozilla.org/en/Add-ons/SDK
 +
*https://developer.mozilla.org/en-US/Add-ons/Code_snippets/Cookies
 +
*https://developer.mozilla.org/en-US/Add-ons/SDK/Low-Level_APIs/ui_button_toggle
 +
*https://developer.mozilla.org/en-US/Add-ons/SDK/High-Level_APIs/panel
 +
*https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/
 +
 +
  
 
</div>
 
</div>

Revision as of 22:36, 19 March 2015

Installing the Mozilla Add-On SDK

Pre-requisites: You need to have Python 2.5, 2.6 or 2.7 installed!

1. Download it!

2. This works for both Mac and Linux users. Open a terminal window.
First extract the file contents by typing this:

 tar -xf addon-sdk.tar.gz

And then navigate to the root directory of the SDK by typing this:

  cd addon-sdk

Now, type this:

  source bin/activate

and, if this doesn't work, type:

  bash bin/activate

3. You now should see something like this in your command promp:

  (addon-sdk)~/mozilla/addon-sdk >

4.Let's see if everything is installed! Type:

  cfx

You should see something like Usage: cfx [options] [command] followed by many lines.

And here's how you can create a simple add-on.

Other useful links: