forked from Thunderbird301/react-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.rdf
27 lines (24 loc) · 1012 Bytes
/
install.rdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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">
<!-- [email protected] -->
<em:id>[email protected]</em:id>
<!-- full name of addon, is displayed -->
<em:name>My React test in Thunderbird</em:name>
<!-- version number of addon -->
<em:version>1.0</em:version>
<!-- author's name -->
<em:creator>david</em:creator>
<em:targetApplication>
<Description>
<!-- Id to which mozilla application addon targets, curerntly Thunderbird -->
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
<!-- minimium version that the add-on supports -->
<em:minVersion>35</em:minVersion>
<!-- maximum version add-on supports, cannot be higher than current TB -->
<em:maxVersion>49.0</em:maxVersion>
</Description>
</em:targetApplication>
</Description>
</RDF>