ZeroOne
ZeroOne

Reputation: 3171

How to disable the incompatible add-ons prompt at Firefox start?

I'm running some Robot Framework integration tests with Firefox 21.0 for Ubuntu. Recently my Firefox was updated and now it always pops up a prompt about incompatible add-ons when it starts. That's unacceptable, as then the tests cannot continue. The prompt looks like this:

The annoying prompt

There are several instructions about this on the web, but they are all either for some old version of Firefox or for some similar but not the same situation (like when Firefox asks whether to disable 3rd party plugins), or they require one to disable the compatibility check for each version of each add-on separately, so none of them seem to work. How do I get rid of the prompt for good?

Upvotes: 0

Views: 232

Answers (1)

ZeroOne
ZeroOne

Reputation: 3171

Find the prefs.js file from your Firefox profile directory, then add this line into it:

user_pref("extensions.showMismatchUI", false);

Presto! No more warnings about incompatible add-ons.

Upvotes: 1

Related Questions