Mozilla VPN is currently experiencing an outage. Our team is actively working to resolve the issue. Please check the status page for real-time updates. Thank you for your patience.

Search Support

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

Allowed Popups: enter a list of allowed sites?

  • 1 antwoord
  • 0 hierdie probleem
  • Laaste antwoord deur cor-el

more options

I save a list of >20 sites on which I allow popups. What is the most efficient way to enter those sites?

==> I would like to avoid entering each one individually.

TYVM.

I save a list of >20 sites on which I allow popups. What is the most efficient way to enter those sites? ==> I would like to avoid entering each one individually. TYVM.

All Replies (1)

more options

You can possibly do this via the Browser Console (not the Web Console).

You can enable the command-line in the Console via the Settings page of the Web Developer Tools.


You can add the origins to the ORIGINS array.

var ORIGINS = ["https://example.com"];
var i, origin;
for (i=0; origin=ORIGINS[i]; i++){
 Services.perms.addFromPrincipal(
  Services.scriptSecurityManager.createContentPrincipalFromOrigin(origin),
  "popup", SitePermissions.ALLOW
 );
}

Helpful?

Vra 'n vraag

You must log in to your account to reply to posts. Please start a new question, if you do not have an account yet.