Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

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
    }
  }
}