canmove, Confirmed users
1,448
edits
(Added chrome-domain as a required property.) |
(Added some optional properties) |
||
| Line 62: | Line 62: | ||
<pre><p id="type">2</p> | <pre><p id="type">2</p> | ||
</pre> | </pre> | ||
=== chrome-domain<br> === | === chrome-domain<br> === | ||
The chrome domain determines how chrome and resource URLs are resolved for the add-on.<br> | The chrome domain determines how chrome and resource URLs are resolved for the add-on.<br> | ||
'''Example:'''<br> | '''Example:'''<br> | ||
<pre><p id="chrome-domain">packagingspec</p> | <pre><p id="chrome-domain">packagingspec</p> | ||
</pre> | </pre> | ||
For the above example, the add-on would be registering itself for URLs starting with ''chrome://packagingspec'' and ''resource://packagingspec''.<br> | For the above example, the add-on would be registering itself for URLs starting with ''chrome://packagingspec'' and ''resource://packagingspec''.<br> | ||
=== target-applications<br> === | === target-applications<br> === | ||
| Line 126: | Line 126: | ||
== Optional properties<br> == | == Optional properties<br> == | ||
( | === description === | ||
A short description of the add-on - intended for display in the user interface. This description should fit on one short line of text. | |||
'''Example:''' | |||
<pre><p id="description">An example for the new add-on packaging specification.</p> | |||
</pre> | |||
=== creator === | |||
The name of the creator/principal developer - intended for display in the user interface. This is a single value.<br> | |||
'''Example:''' | |||
<pre><p id="creator">Jorge Villalobos</p></pre> | |||
=== developers === | |||
The name(s) of co-developers. You may specify multiple developers. | |||
'''Example:'''<br> | |||
<pre><ol id="developers"> | |||
<li>John Doe</li> | |||
<li>Jane Doe</li> | |||
</ol> | |||
</pre> | |||
=== translators<br> === | |||
The name(s) of translators. You may specify multiple translators. | |||
'''Example:''' | |||
<pre><ol id="translators"> | |||
<li>John Doe</li> | |||
<li>Jane Doe</li> | |||
</ol> | |||
</pre> | |||
=== contributors === | |||
The name(s) of additional contributors. You may specify more than one contributor. | |||
'''Example:''' | |||
<pre><ol id="contributors"> | |||
<li>John Doe</li> | |||
<li>Jane Doe</li> | |||
</ol> | |||
</pre> | |||
<br> | |||