blob: d588012cda7dbeb85763c623a8573bb9ec6e63db (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
Defines installation parameters for the CEEE extension.
-->
<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>ceee@google.com</em:id>
<em:name>@CEEE_PRODUCT_FULLNAME@</em:name>
<em:version>@MAJOR@.@MINOR@.@BUILD@.@PATCH@</em:version>
<em:creator>@COMPANY_FULLNAME@</em:creator>
<em:description>Enables @CEEE_PRODUCT_FULLNAME@ in Firefox.</em:description>
<em:homepageURL>http://www.google.com</em:homepageURL>
<em:aboutURL>chrome://ceee/content/about.xul</em:aboutURL>
<em:optionsURL>chrome://ceee/content/options.xul</em:optionsURL>
<em:iconURL>chrome://ceee/content/ceee.png</em:iconURL>
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <!-- firefox -->
<em:minVersion>1.5</em:minVersion>
<em:maxVersion>3.6.*</em:maxVersion>
</Description>
</em:targetApplication>
</Description>
</RDF>
|