Die Funktionalität dieser Website ist durch Wartungsarbeiten eingeschränkt, die Ihr Erlebnis verbessern sollen. Wenn ein Artikel Ihr Problem nicht löst und Sie eine Frage stellen möchten, können Sie unsere Gemeinschaft über @FirefoxSupport auf Twitter, /r/firefox oder Reddit fragen.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

Allowed Popups: enter a list of allowed sites?

  • 1 Antwort
  • 0 haben dieses Problem
  • Letzte Antwort von 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.

Alle Antworten (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
 );
}

Hilfreich?

Stellen Sie eine Frage

Sie müssen sich mit Ihrem Benutzerkonto anmelden, um auf Beiträge zu antworten. Bitte stellen Sie eine neue Frage, wenn Sie noch kein Benutzerkonto haben.