Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Firefox 88.0 popup exception list configuration file

  • 1 antwoord
  • 1 heeft dit probleem
  • 7 weergaven
  • Laatste antwoord van Janis.Abolins

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?

Alle antwoorden (1)

more options

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