搜索 | 用户支持

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

Learn More

how to disable Pop-up blocker settings or add a exception website for pop-up as default before install firefox

  • 4 个回答
  • 1 人有此问题
  • 298 次查看
  • 最后回复者为 cor-el

more options

i need set a default exception website for pop-up blocker settings fore every firefox install. or completely disable pop-up blocker settings as default.

what can i do for this purpose?

i need set a default exception website for pop-up blocker settings fore every firefox install. or completely disable pop-up blocker settings as default. what can i do for this purpose?

被采纳的解决方案

cor-el said

You can use the PopupBlocking policy.

i gave it a try to create a policies.json on /etc/firefox . but failed for me. {

 "policies": {
     "PopupBlocking": {
         "Allow": ["https://www.xxx.net/"],
         "Default": true | false,
         "Locked": true | false
   }
 }

}

thanks a lot. i finally found two methods to meet my need. 1. set dom.disable_open_during_load to false 2. or copy a pre-set permissions.sqlite to profile directory.

定位到答案原位置 👍 0

所有回复 (4)

more options

What popup? No screenshot of the issue or what popup doesn't help others figure or identify what is happening here?

more options
more options

选择的解决方案

cor-el said

You can use the PopupBlocking policy.

i gave it a try to create a policies.json on /etc/firefox . but failed for me. {

 "policies": {
     "PopupBlocking": {
         "Allow": ["https://www.xxx.net/"],
         "Default": true | false,
         "Locked": true | false
   }
 }

}

thanks a lot. i finally found two methods to meet my need. 1. set dom.disable_open_during_load to false 2. or copy a pre-set permissions.sqlite to profile directory.

more options

You need to select only one of the "true | false" choices.

{
  "policies": {
    "PopupBlocking": {
      "Allow": ["https://www.xxx.net/"],
      "Default": true,
      "Locked": false
    }
  }
}