-
Notifications
You must be signed in to change notification settings - Fork 4
/
install.rdf
44 lines (32 loc) · 1.54 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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">
<!-- The id of the extension. -->
<em:id>memory-profiler@astithas.com</em:id>
<!-- A version string identifying the version of the add-on. -->
<em:version>0.6</em:version>
<!-- The name of the add-on; intended for display in the UI. -->
<em:name>Memory Profiler</em:name>
<!-- A short description to display in the user interface. -->
<em:description>Adds a tab to observe the changes in memory footprint of a page</em:description>
<!-- The name of the developer to display in the user interface. -->
<em:creator>Panos Astithas</em:creator>
<!-- A link to the add-on home page to display in the user interface. -->
<em:homepageURL>https://github.com/past/memory-profiler</em:homepageURL>
<!-- Target Application this extension can install into,
with minimum and maximum supported versions. -->
<em:targetApplication>
<Description>
<!-- Mozilla Firefox -->
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>26.0a2</em:minVersion>
<em:maxVersion>27.0a1</em:maxVersion>
</Description>
</em:targetApplication>
<!-- An integer value representing the type of add-on. -->
<em:type>2</em:type> <!-- Extensions -->
<!-- Tells the application whether the extension is boot-strappable. -->
<em:bootstrap>true</em:bootstrap>
</Description>
</RDF>