2012-03-31 8 views
1

Ich versuche, ein Add-on zu installieren, aber es sagt onextension could not be installed because it's not compatible with Firefox 11, aber es ist (ich schrieb es).MDN Extension funktioniert nicht

Hier ist der 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>[email protected]</em:id> 
     <em:version>2.0</em:version> 
    <em:type>2</em:type> 
    <em:name>onextension</em:name> 
    <em:description>Find out who visits your Facebook profile!</em:description> 
     <em:creator>Four Bananas</em:creator> 
    <em:iconURL>chrome://onextension/content/images/icon.png</em:iconURL> 
    <em:targetApplication> 
     <Description> 
       <em:id>{3A1C1C4C-7AE3-11E1-8AD9-A6AA4824019B}</em:id> 
       <em:minVersion>3.5</em:minVersion> 
       <em:maxVersion>11.*</em:maxVersion> 
     </Description> 
    </em:targetApplication> 
</Description> 
</RDF> 

Können Sie mir helfen? Vielen Dank!

Antwort

0

Ihre Zielanwendung em: id sollte {ec8030f7-c20a-464f-9b0e-13a3a9e97384} sein, welche die ID des Firefox ist

Verwandte Themen