Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Modify about:config and allow pop ups for multiple systems

  • 1 件の返信
  • 3 人がこの問題に困っています
  • 2 回表示
  • 最後の返信者: cor-el

more options

What I need to accomplish: security.mixed_content.block_active_content = False Allow all pop-ups from salesforce.com

I need to do this for 70 computers within my domain.

To modify about:config, I've tried editing user.js (I had to create the user.js file as it did not exist in my profile folder) using the batch file below.

Batch File to edit user.js cd /D "%APPDATA%\Mozilla\Firefox\Profiles\*.default" echo user_pref("security.mixed_content.block_active_content", "false");>>user.js


I've read that the permissions.sqlite file can be edited to allow the pop ups, is there a way for me to edit that from a batch file?

Are these modifications possible without having to visit each user?

What I need to accomplish: security.mixed_content.block_active_content = False Allow all pop-ups from salesforce.com I need to do this for 70 computers within my domain. To modify about:config, I've tried editing user.js (I had to create the user.js file as it did not exist in my profile folder) using the batch file below. Batch File to edit user.js cd /D "%APPDATA%\Mozilla\Firefox\Profiles\*.default" echo user_pref("security.mixed_content.block_active_content", "false");>>user.js I've read that the permissions.sqlite file can be edited to allow the pop ups, is there a way for me to edit that from a batch file? Are these modifications possible without having to visit each user?

この投稿は indyitguy により に変更されました

すべての返信 (1)

more options

You can also use a mozilla.cfg file in the Firefox program folder to specify new (default) values for refs.

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");

These functions can be used in the mozilla.cfg file:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes

See also:


I don't know of a way to easily modify the permissions.sqlite file to add an allow pop-up exception.
You would need an SQLite manager program that accepts command line input to add such a record.
The main problem would be to get the ID value to be used.

  • INSERT INTO "moz_hosts" VALUES ("<id>","www.salesforce.com","popup","1","0","0","0","0");