Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Activate plugins for all users on a web-site

  • 4 ответа
  • 1 имеет эту проблему
  • 6 просмотров
  • Последний ответ от jasonrw

more options

Hello,

Is there a way to activate or whitelist plugins for a specific web-site, for all users on a Windows computer? Each time a user logs in and visits the site, they have to click three prompts to enable content. Aside from being annoying, most folks aren't that tech-savvy to understand what is going on and that they need to do it. All they want is for their content to run in the browser.

Thanks

Hello, Is there a way to activate or whitelist plugins for a specific web-site, for all users on a Windows computer? Each time a user logs in and visits the site, they have to click three prompts to enable content. Aside from being annoying, most folks aren't that tech-savvy to understand what is going on and that they need to do it. All they want is for their content to run in the browser. Thanks

Все ответы (4)

more options

Are these plugins disabled because they are out of date? If so, just update them

more options

I keep the machines pretty up to date. This is a plugin for a web-based conferencing system called "BLueJeans." I install the plugin beforehand, but the users are still prompted to activate when visiting the site.

more options

There are plugin.state prefs for each plugin.

  • plugin.state (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:

more options

Thanks! I'll give this a try and see how it works.