Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Disable "Checking Your Add-ons" When Launching Firefox

  • 2 个回答
  • 1 人有此问题
  • 5 次查看
  • 最后回复者为 cor-el

more options

Currently in our enterprize enviroment we have an older version of Firefox that we can not upgrade (long story).

When a user first launches Firefox, the first windows says "Checking Your Add-on's"

How can I get Firefox to not have this pop up?

Note: This is on a Citrix Provisioning Server, I have a default profile that when people launches Firefox all the certs etc gets loaded. Is there a way in the default profile to configure not to check Add-On's ?

Currently in our enterprize enviroment we have an older version of Firefox that we can not upgrade (long story). When a user first launches Firefox, the first windows says "Checking Your Add-on's" How can I get Firefox to not have this pop up? Note: This is on a Citrix Provisioning Server, I have a default profile that when people launches Firefox all the certs etc gets loaded. Is there a way in the default profile to configure not to check Add-On's ?

所有回复 (2)

more options

There is a setting in the menu in the Addons window for "Update Addons Automatically". Make sure that it is not checked. You can also reset all addons to update manually.

more options

You could set lastVersion prefs to the value of that new Firefox version to prevent such a check.

user_pref("extensions.lastAppVersion", "32.0");
user_pref("extensions.lastPlatformVersion", "32.0");

You could do that via user.js file in the defaults\pref folder in the Firefox program folder to initialize new profiles or via a mozilla.cfg file for all users (use pref() instead of user_pref()).

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

See: