Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

How do you completely disable the installation and use of add-ons for firefox 4? Is there a config setting/file that can be changed to completely disable add-ons?

  • 1 件の返信
  • 1 人がこの問題に困っています
  • 2 回表示
  • 最後の返信者: cor-el

more options

I want to completley disable the installation and/or use of add-ons in Firefox 4. I don't want anybody that logs onto either of my computers to be able to use add-ons and I can't find a way to disable it in the configuration files. I've found ways to lock down other options like updates etc. but I cannot find a way to completely disable add-ons.

I want to completley disable the installation and/or use of add-ons in Firefox 4. I don't want anybody that logs onto either of my computers to be able to use add-ons and I can't find a way to disable it in the configuration files. I've found ways to lock down other options like updates etc. but I cannot find a way to completely disable add-ons.

すべての返信 (1)

more options

See:

You can use a mozilla.cfg file to lock prefs or specify default values.
You can place a file local-settings.js in the defaults\pref folder to specify using mozilla.cfg.

You can use these functions in mozilla.cfg:

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


To prevent users from installing software use:

 //
 lockPref("xpinstall.enabled" ,false);