We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

搜索 | 用户支持

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

详细了解

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.