alesdario
alesdario

Reputation: 1894

Firefox addon compatibility

<em:targetApplication>
  <Description>
    <em:minVersion>1.5</em:minVersion>
    <em:maxVersion>3.6.16</em:maxVersion>
  </Description>
</em:targetApplication>

the only declaration who get the compatibility of some firefox addon or are there any other?

I'm trying for creating my first extension whith the declaration shown. When i install my addon firefox told me that the extension is not compatible with where installed version of the browser (3.6)

Upvotes: 0

Views: 234

Answers (1)

Felix Kling
Felix Kling

Reputation: 817208

You also need the ID of the application. E.g. for Firefox:

<em:targetApplication>
    <Description>
        <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
        <em:minVersion>1.5</em:minVersion>
        <em:maxVersion>3.6.16</em:maxVersion>
    </Description>
</em:targetApplication>

Update: It is difficult to tell why it does not work without seeing all the code. I suggest you read this tutorial.

Upvotes: 1

Related Questions