I am trying to install a firefox xpi silently through an msi installer. I am doing so by the following method:

Unzip my xpi in some temp dir and copy all the contents of that to the %APPDATA%\Mozilla\Firefox\Profiles\xxxx.default\extensions\

I expected the addon to be available the next time my firefox opens, but I am not able to get it. Can someone tell me if there is more to be done for a silent install of firefox addons?

Kapil

link|improve this question

65% accept rate
1  
silently install the addon the user wants? (e.g. part of some other thing they chose to install in IE?) or silently install a spyware toolbar that they have no interest in? – scunliffe Jun 21 '10 at 21:20
To elaborate further, I have a firefox plugin which cannot work standalone - it works in conjunction with a windows app. So, I package my firefox plugin with the msi installer and ask for user's permission before I start the install. The problem I have now is that if I do not do a silent install, the behavior is very clumsy. Any pointers on how can I do this? – Kapil Jun 21 '10 at 21:37
1  
That still sounds like something that would annoy me as a user. If I wasn't paying attention during the install then I might not realize there was a firefox addon and I would want firefox to inform me that it had been modified. – MatrixFrog Jul 5 '10 at 2:37
feedback

3 Answers

up vote 0 down vote accepted

The key is the name of the folder you are placing inside the extensions folder, it has to be called as the extension id (which is defined inside the install.rdf file).

Also note that this will not be a completely silent install, the addon install dialog will warn the user the next time Firefox is started with that profile that a new extension has been installed.

link|improve this answer
This is not the ideal way to do this as it may be removed in future versions. – sdwilsh Jun 21 '10 at 22:23
sdwilish, then how should one go ahead with a silent install? Are you saying that we might not be able to install silently at all in the future versions? That would be bad! – Kapil Jun 22 '10 at 7:17
That wouldn't be bad... that would be safe! After all, it stops some of the "silent installs" (like the one described in the question) and thereby stops potential malware, spyware, backdoors, and other nice things we don't want on our computers. – e-sushi Dec 27 '11 at 12:27
feedback

You want to add your add-on via the windows registry.

link|improve this answer
feedback

Silent installs are depreciated!

Besides, that would make the addon in question malware - as it would be installed without user interaction. Depending on who developed this addon and for what purposes, this might cause really dangerous security and privacy problems for the person who's getting that addon installed "silently" and most probably without him/her knowing.

Let's read that question again...

I am trying to install a firefox xpi silently through an msi installer...

Bad idea! Smells like mallware, feels like malware and I bet there will be users crying out loud as soon as they notice they got an addon installed while they were actually installing something else on their machine.

Besides, there is no sane reason why you would want to wrap an XPI into an MSI installer and then silently install it "without user interaction", unless you want to "sneak something into people's browser".

Or am I getting your intends wrong and you're simply trying to produce a bigger installation file? Certainly not... and the "elaboration" you posted about the addon interacting with some to-be-installed software with yet-to-be-disclosed functionality doesn't make it OK either.

Interestingly, a question comes up in my mind: how do you want to tell the user what to uninstall if he doesn't like your "software"? After all, thanks to the "silent install", the user might not even know that there's a new browser addon on board.

Please note: I'm just being critical on a normal level... people actually using such an installer might get much more furious up to the point that they blacklist your website and (depending on the country they live in) successfully press charges against you personally which might then even result in jail-time. In short: it's not worth the trouble!

My Tip: Always offer people the means to decide if they want to install what you got to offer. Making them find a new addon that installed "out of nowhere" will cause problems sooner or later. It's not only "beyond impolite" but also a great example of "how not to do it" or "how to get into legal trouble faster than you can spell: it's not malware".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.