Created
June 25, 2014 09:12
-
-
Save nmaier/515c7da04a85575eb124 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function install() {} | |
function uninstall() { | |
Components.utils.reportError("uninstall!"); | |
} | |
function startup() { | |
Components.utils.reportError("startup!"); | |
} | |
function shutdown() { | |
Components.utils.reportError("shutdown!"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>test@test</em:id> | |
<em:name>boostrap-test</em:name> | |
<em:version>9</em:version> | |
<em:creator>Nils Maier</em:creator> | |
<em:bootstrap>true</em:bootstrap> | |
<em:type>2</em:type> | |
<!-- Firefox --> | |
<em:targetApplication> | |
<Description> | |
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> | |
<em:minVersion>10.0</em:minVersion> | |
<em:maxVersion>21.*</em:maxVersion> | |
</Description> | |
</em:targetApplication> | |
</Description> | |
</RDF> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment