comparison firefoxaddon/template/install.rdf_tmpl @ 0:9869cf47fcf8 default tip

initial commit of Firefox addon template
author k0s <k0scist@gmail.com>
date Sun, 28 Mar 2010 16:25:58 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9869cf47fcf8
1 <?xml version="1.0" encoding="UTF-8"?>
2 <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3 xmlns:em="http://www.mozilla.org/2004/em-rdf#">
4 <Description about="urn:mozilla:install-manifest">
5 <em:id>${package}@${'.'.join([i.lower() for i in author.split()])}</em:id>
6 <em:name>${project}</em:name>
7 <em:version>1.0</em:version>
8 <em:creator>${author}</em:creator>
9 <em:description>${description}</em:description>
10 <em:homepageURL>${url}</em:homepageURL>
11 <em:aboutURL>chrome://${package}/content/about.xul</em:aboutURL>
12 <em:optionsURL>chrome://${package}/content/options.xul</em:optionsURL>
13 <em:iconURL>chrome://${package}/content/${package}.jpg</em:iconURL>
14 <em:targetApplication>
15 <Description>
16 <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <!-- firefox -->
17 <em:minVersion>1.5</em:minVersion>
18 <em:maxVersion>3.0.*</em:maxVersion>
19 </Description>
20 </em:targetApplication>
21 </Description>
22 </RDF>