Creating a Firefox Extension in 3 Easy Steps
We recently created an extension for the Hipatic website. Here is how to create the most basic extension in 3 easy steps! Step 1: Create files & folders. Name it myfirstextension@mysite.com Inside this folder create files named chrome.manifest & install.rdf Inside the same folder create a folder named chrome Inside the folder named chrome create a folder named content Inside the folder named content create a file named sample.xul Step2: Filling up the files! open install.rdf and copy the following code <?xml version="1.0"?> <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"> <Description about="urn:mozilla:install-manifest"> <em:id>myfirstextension@mysite.com</em:id> <em:version>1.0.0</em:version> <em:type>2</em:type> <em:targetApplication> <Description> <em:id>{ec8030f7-c20a-4...