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

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

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

Докладніше

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

How to deploy popup blocker allowed sites settings to multiple computers?

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

more options

We are running on Win 7 Platform with Firefox ESR version 31.4.0. We want to disable popup blocker for certain sites. I tried to use FirefoxADM_0.5.9.4 to apply the settings through group policy but that did not work. When I look at the firefox_login.vbs file, there is a line mentioning registry setting FirefoxPopupsWhitelistKey = WshShell.regread("HKCU\Software\Policies\Firefox\FirefoxPopupWhitelist") but I cannot find that key on the computer.

Does anyone has experience deploying this type of settings? If not, I am also open to hear about disabling completely popup blocker.

if this cannot be done through group policy, please let me know other way that I can do this. I read through the about:config configuration but I did not find any settings to disable the popup.

Thanks for your help.

We are running on Win 7 Platform with Firefox ESR version 31.4.0. We want to disable popup blocker for certain sites. I tried to use FirefoxADM_0.5.9.4 to apply the settings through group policy but that did not work. When I look at the firefox_login.vbs file, there is a line mentioning registry setting FirefoxPopupsWhitelistKey = WshShell.regread("HKCU\Software\Policies\Firefox\FirefoxPopupWhitelist") but I cannot find that key on the computer. Does anyone has experience deploying this type of settings? If not, I am also open to hear about disabling completely popup blocker. if this cannot be done through group policy, please let me know other way that I can do this. I read through the about:config configuration but I did not find any settings to disable the popup. Thanks for your help.

Обране рішення

Firefox stores all exceptions in the permissions.sqlite file, so you would have to use an SQLite Manager extension or program to modify this database.

Disabling the pop-up blocker in Firefox would be easier as that would only require to toggle a pref and that can be done via a mozilla.cfg file.

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 also:

Читати цю відповідь у контексті 👍 0

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

more options

Вибране рішення

Firefox stores all exceptions in the permissions.sqlite file, so you would have to use an SQLite Manager extension or program to modify this database.

Disabling the pop-up blocker in Firefox would be easier as that would only require to toggle a pref and that can be done via a mozilla.cfg file.

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 also:

more options

Thanks cor-el.

I used cck wizard from mike.kaply and I got what I need. your tip on disabling popup blocker using the local-settings.js and mozilla.cfg work as well.

so do I need to use FirefoxADM_0.5.9.4 at all? I read somewhere that firefox doesn't play nice with Active Directory.

I know that FirefoxADM_0.5.9.4 able to disable the message to set firefox as default browser. I believe using cck or local-settings will be more reliable than using AD group policy.