Mozilla 도움말 검색

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

Learn More

Firefox 88.0 popup exception list configuration file

more options

Hello,

Is there a way to create popup exception list configuration file, that allows popups for certain webpages? I want to deploy such a file to our organizations 800 PCs.... I tried to create autoconfig.js file and put it in C:\Program Files (x86)\Mozilla Firefox\defaults\pref location : //Popup Settings Components.utils.import("resource://gre/modules/Services.jsm"); Components.utils.import("resource://gre/modules/NetUtil.jsm"); Services.perms.add(NetUtil.newURI("https://websitehere.com"), "popup", Services.perms.ALLOW_ACTION);

I tried with such a configuration: //Popup Settings Components.utils.import("resource://gre/modules/Services.jsm"); var uri = Services.io.newURI("https://websitehere.com", null, null); Services.perms.add(uri, "popup", 1);

But nothing works... Is there a way to do this?

Hello, Is there a way to create popup exception list configuration file, that allows popups for certain webpages? I want to deploy such a file to our organizations 800 PCs.... I tried to create autoconfig.js file and put it in C:\Program Files (x86)\Mozilla Firefox\defaults\pref location : //Popup Settings Components.utils.import("resource://gre/modules/Services.jsm"); Components.utils.import("resource://gre/modules/NetUtil.jsm"); Services.perms.add(NetUtil.newURI("https://websitehere.com"), "popup", Services.perms.ALLOW_ACTION); I tried with such a configuration: //Popup Settings Components.utils.import("resource://gre/modules/Services.jsm"); var uri = Services.io.newURI("https://websitehere.com", null, null); Services.perms.add(uri, "popup", 1); But nothing works... Is there a way to do this?

모든 댓글 (1)

more options

So it looks like there is no help....