I'm trying to publish my first Firefox extension and having trouble installing it.
I sign the package with jpm xpi
. However, when I try to install the .xpi file, I get the error:
[extension name] could not be installed because it is not compatible with Firefox Developer Edition 52.0a2
I have also tried this in the consumer Firefox version 50.0.
Current em
tags:
<em:minVersion>0.9</em:minVersion>
<em:maxVersion>1.0+</em:maxVersion>
I have also tried
'<em:maxVersion>50.0.*</em:maxVersion>'
And
'<em:maxVersion>52.0+</em:maxVersion>'
My current XPI file is hosted here
`<?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>[email protected]</em:id>
<em:version>1.1</em:version>
<!-- Target Application this extension can install into,
with minimum and maximum supported versions. -->
<em:targetApplication>
<Description>
<!-- Firefox's UUID -->
<em:id>[myemail]</em:id>
<em:minVersion>0.9</em:minVersion>
<em:maxVersion>1.0+</em:maxVersion>
</Description>
</em:targetApplication>
<!-- Front End MetaData -->
<!-- My_Theme -->
<em:name>Stop Normalizing</em:name>
<em:description>my extension description</em:description>
<em:creator>my name</em:creator>
<em:homepageURL>my url</em:homepageURL>
<!--
<em:aboutURL>my website URL</em:aboutURL>
<!-- Front End Integration Hooks (used by Theme Manager)-->
<em:internalName>Extension_name</em:internalName>
</Description>
</RDF>`
Any help would be hugely appreciated. I'm at a loss for how to proceed.