我正在为Firefox 11编写一个附加组件,但是当我加载它时,我收到的消息是该附加组件与Firefox 11不兼容。
这是我的install.rdf
:
<?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>gnup@gear-network.com</em:id>
<em:unpack>true</em:unpack>
<em:name>GNUp</em:name>
<em:version>1.0</em:version>
<em:description>bleh bleh bleh</em:description>
<em:creator>Gear Network</em:creator>
<em:homepageURL>http://gear-network.com/</em:homepageURL>
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>3.0</em:minVersion>
<em:maxVersion>11.0</em:maxVersion>
</Description>
</em:targetApplication>
</Description>
</RDF>
之前有没有人遇到过这个问题?
答案 0 :(得分:1)
以下是可用作minVersion
或maxVersion
的所有版本的列表:
https://addons.mozilla.org/en-US/firefox/pages/appversions/
您提供的值(11.0
)可能过于具体。尝试使用更广泛的版本标识符11.*
。这还包括将来的所有小更新。