Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
94
rated 0 times [  95] [ 1]  / answers: 1 / hits: 46959  / 8 Years ago, tue, october 4, 2016, 12:00:00

I am trying to install an extension in Firefox 45 (same happens with Firefox 49), but Firefox does not allow me to do that, indicating that



This add-on could not be installed because it appears to be corrupt. 


The way I am trying to install it is simply by dragging the .xpi file our team developed, into the Firefox window. This extension is based on MozRepl, but with some improvements.



Previously, I tried to install it but I couldn't as it was not signed (extensions in Firefox versions from 43 onwards require signing). I followed every step in order to sign it, according to this post: Signing a XPI. I am almost certain I could sign it correctly, but now the error Firefox displays is different: This add-on could not be installed because it appears to be corrupt.



enter



It seems that I am not creating the .xpi file correctly, but I am not sure which is the correct structure it should have. I tried different folder structures, but with no success.



Also, I checked the Browser Console to see what error is logged in, but I didn't found it really helpful. Here it is:



enter



Here is a link to the .xpi file in case you want to check its content. Note that I tried moving the files manifest.mf, zigbert.rsa and zigbert.sf outside the META-INF folder, but it didn't work either.



Has anyone stumbled across an error like this when trying to install an add-on? Any ideas of what maybe happening?


More From » firefox

 Answers
12

The .xpi file must use only deflate compression or uncompressed



The zip implementation within Firefox only supports uncompressed files or files compressed with the Deflate algorithm. You will need to create the .zip archive using the compression method Deflate instead of the LZMA which you are currently using. How to do so will depend on the tools you use to create your archive.



Personally, I use a batch file/shell script to create the .xpi file as I describe in detail in my answer to Firefox extension .xpi file structure: description, contents, creation, and installation. The basics are that I use the zip command line tool which defaults to deflate or uncompressed. I use the -1 option to provide the fastest compression. Firefox/Mozilla use .xpi files both to package the files, but to also increase file access speed. The important quality is not a high compression ratio, but that the files can be accessed quickly. Unless Firefox is not an WebExtension and explicitly told to unpack the add-on by the install.rdf option <em:unpack>true</em:unpack> (WebExtensions don't have install.rdf files), the add-on will be installed as the .xpi file and all access to the add-on will be as the .xpi file.



Note: Given that your extension contains .dll files, you may need to have your add-on installed unpacked by using <em:unpack>true</em:unpack>.



Wrong signing method used. It must be signed by Mozilla, not yourself.



While it is not the error you are currently seeing, as soon as you fix the problem with your .xpi format, you will encounter an issue with your extension being signed by the wrong signature. You signed your extension with your own signature. It was not signed by Mozilla. This will not work. It must be signed by Mozilla, not yourself.You mentioned that you followed the directions in the MDN page Signing an XPI. However, as is clearly stated at the top of that page, the directions on that page are outdated and no longer work. You should have followed the link in the note to the page Signing and distributing your add-on. The note at the top of the page states:




Note: These instructions are outdated. For an extension to work in Firefox it must be signed by Mozilla, not by yourself. See Signing and distributing your add-on. [Emphasis added]




There are also a variety of questions here on Stack Overflow which address the signing issue.


[#60511] Saturday, October 1, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
dequant

Total Points: 88
Total Questions: 99
Total Answers: 95

Location: Ukraine
Member since Sun, Dec 13, 2020
4 Years ago
;