Created
March 11, 2011 13:57
-
-
Save ongaeshi/865904 to your computer and use it in GitHub Desktop.
自作のFirefoxアドオンが4.0になったらまた動かなくなった
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| addon-sdk-1.0b1/python-lib/cuddlefish/app-extension/install.rdf が原因 | |
| <!-- Firefox --> | |
| <em:targetApplication> | |
| <Description> | |
| <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> | |
| <em:minVersion>3.6</em:minVersion> | |
| <em:maxVersion>4.0.*</em:maxVersion> | |
| </Description> | |
| </em:targetApplication> | |
| 4.0RC1にしたらまた動かなくなる、以下の様にして回避 | |
| <!-- Firefox --> | |
| <em:targetApplication> | |
| <Description> | |
| <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> | |
| <em:minVersion>4.0b7</em:minVersion> | |
| <em:maxVersion>4.0b*</em:maxVersion> | |
| </Description> | |
| </em:targetApplication> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment