blob: 1734e7799f5020e89226e6c8e538707e0e19cbc0 (
plain)
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
|
---
title: install.rdf
slug: install.rdf
translation_of: Archive/Mozilla/Creating_a_Skin_for_SeaMonkey_2.x/install.rdf
---
<p>Copy the following text and paste it into a text file, then save that file as "<code>install.rdf</code>":</p>
<pre class="brush:xml"><?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>author@oftheme.com</em:id>
<em:version>2.0b1</em:version>
<!-- SeaMonkey -->
<em:targetApplication>
<Description>
<em:id>{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}</em:id>
<em:minVersion>2.0b1pre</em:minVersion>
<em:maxVersion>2.0b2pre</em:maxVersion>
</Description>
</em:targetApplication>
<!-- Front End MetaData -->
<em:name>My_Theme</em:name>
<em:description>My first theme</em:description>
<!-- Front End Integration Hooks (used by Theme Manager)-->
<em:creator>John Johnson</em:creator>
<em:contributor>John Johnson</em:contributor>
<em:homepageURL>https://mycoolskin.com/</em:homepageURL>
<em:updateURL>https://mycoolskin.com/</em:updateURL>
<em:aboutURL>https://mycoolskin.com/</em:aboutURL>
<em:internalName>My_Theme</em:internalName>
</Description>
</RDF>
</pre>
|