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!

Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Learn More

Permenantly disable plugins and addons

  • 2 odgovora
  • 2 imaju ovaj problem
  • 1 prikaz
  • Posljednji odgovor od cor-el

more options

Is there a way to restrict the access to plugins and addons to the administrator? We do not want our patrons to have access to the ability to modify Firefox in any way.

Is there a way to restrict the access to plugins and addons to the administrator? We do not want our patrons to have access to the ability to modify Firefox in any way.

Svi odgovori (2)

more options

Hello tmartin225.

If you want to disable the plugins and addons please go through this link. https://support.mozilla.org/en-US/kb/disable-or-remove-add-ons

Regards, Gautam sharma.

more options

You can consider to lock plugin.state.* prefs for each plugin to a specific value.

  • 0:Never Activate; 1:Ask to Activate; 2:Always Activate

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

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: