I was planing to make some but dont know what script it is in or anything.
How do you make Add-ons for Firefox?
Read this page.
(And don't forget to make your extension compatible with other gecko browsers...)
(And don't forget to make your extension compatible with other gecko browsers...)
First get your hands dirty:
http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/
What files does an extension use:
http://kb.mozillazine.org/Getting_started_with_extension_development
And then the real works, with these two books which are also made available for free online:
http://books.mozdev.org/chapters/index.html
http://mb.eschew.org/contents
Extensions for Firefox (and the Mozilla platform in general) are developed using javascript as the scripting language and XUL as the UI building markup language.
To see what the source of an extension looks like:
- look for an extension, but instead of installing it use right click -> "Save target as..." to save it.
- unzip the .xpi file using winzip or 7zip
- now you have the basic folder structure, but it includes one or more .jar files. Unzip them too using winzip.
- look at the different files containing javascript, XUL or RDF.
http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/
What files does an extension use:
http://kb.mozillazine.org/Getting_started_with_extension_development
And then the real works, with these two books which are also made available for free online:
http://books.mozdev.org/chapters/index.html
http://mb.eschew.org/contents
Extensions for Firefox (and the Mozilla platform in general) are developed using javascript as the scripting language and XUL as the UI building markup language.
To see what the source of an extension looks like:
- look for an extension, but instead of installing it use right click -> "Save target as..." to save it.
- unzip the .xpi file using winzip or 7zip
- now you have the basic folder structure, but it includes one or more .jar files. Unzip them too using winzip.
- look at the different files containing javascript, XUL or RDF.
Related topics
