Firefox addon Firefox升级问题

Firefox addon Firefox升级问题,firefox-addon,Firefox Addon,我正在编写firefox扩展 使用下面的install.rdf <?xml version="1.0"?> <!--Copyright 2011, Example --> <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"> <Description about="urn:mozill

我正在编写firefox扩展

使用下面的install.rdf

<?xml version="1.0"?>
<!--Copyright 2011, Example -->
<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>example</em:id>
    <em:version>1.1</em:version>
    <em:targetApplication>
      <Description>
        <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
        <em:minVersion>4.0</em:minVersion>
        <em:maxVersion>6.*</em:maxVersion>
      </Description>
    </em:targetApplication>
    <em:name>example</em:name>
    <em:unpack>true</em:unpack>
    <em:type>2</em:type>
    <em:description>Example.</em:description>
    <em:creator>Example.</em:creator>
    <em:homepageURL>http://www.example.com/</em:homepageURL>
    <em:iconURL>chrome://example/content/cm-logo.png</em:iconURL>
    <em:updateURL>https://www.example.com/stat/update.php?ver=2.73</em:updateURL>
  </Description>
</RDF>
但问题是,若我在FF4中安装它,并在相同的配置文件位置启动FF5。 它显示为禁用,它显示为不兼容

如果我直接安装在FF 5它是工作良好

rdf文件中有什么错误?

出现错误

更新url中的版本错误

在更新url中,我给出了版本3.6到4:P