Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Meer info

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Activate plugins for all users on a web-site

  • 4 antwoorden
  • 1 heeft dit probleem
  • 6 weergaven
  • Laatste antwoord van 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

Alle antwoorden (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.