Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

Is there a way to automatically allow a third party plugin in Firefox prior to first use for multiple users?

  • 1 відповідь
  • 1 має цю проблему
  • 5 переглядів
  • Остання відповідь від cor-el

more options

I'm looking for a way to automatically set a third party plugin to "allow" for all users within the company. I've verified that the plugin is safe. I'd like to avoid the users having to click on Allow, then Allow and Remember in order to change the setting in Tools / Page Info / Permissions tab for the specific plugin from Use Default to the Allow radio button. The website is for internal use only and not public facing where the plugin is needed.

I'm looking for a way to automatically set a third party plugin to "allow" for all users within the company. I've verified that the plugin is safe. I'd like to avoid the users having to click on Allow, then Allow and Remember in order to change the setting in Tools / Page Info / Permissions tab for the specific plugin from Use Default to the Allow radio button. The website is for internal use only and not public facing where the plugin is needed.

Усі відповіді (1)

more options

You can set its corresponding plugin.state pref to 2.

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

You would have to check the about:config page to find the correct pref for that plugin.

You can open the about:config page via the location/address bar. You can accept the warning and click "I'll be careful" to continue.


You can use the mozilla.cfg file in the Firefox program folder to set or lock preferences.

A local-settings.js file needs to be placed 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

The mozilla.cfg file needs to start with a comment line (//).

See Configuration:

See also: