Contents.rdf: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(make RDF the default namespace and note that chrome:extension arc is optional)
Line 2: Line 2:


===For content===
===For content===
See [[Dev : Extensions : Overlays]] for more information.
See [[Overlays]] for more information.
'''myext''' should be your extension's short name.
'''myext''' should be your extension's short name.



Revision as of 04:28, 19 March 2005

Example contents.rdf files

For content

See Overlays for more information. myext should be your extension's short name.

<?xml version="1.0"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
  <Seq about="urn:mozilla:package:root">
    <li resource="urn:mozilla:package:myext"/>
  </Seq>

  <Description about="urn:mozilla:package:myext" chrome:name="myext"/>
<!-- additionally for Mozilla Suite and old Firefox/Thunderbird versions include:
	chrome:extension="true"
	chrome:displayName="My Extension's Long Name"
	chrome:author="Me"
	chrome:authorURL="http://myext.com/"
	chrome:description="An example extension"
	chrome:settingsURL="chrome://myext/content/"
-->

  <Seq about="urn:mozilla:overlays">
    <li resource="chrome://browser/content/browser.xul"/>
  </Seq>

  <Seq about="chrome://browser/content/browser.xul">
    <li>chrome://myext/content/overlay.xul</li>
  </Seq>
</RDF>

For locales

For skin