From 4e5f12a6c29d6adae8ae1a0236edb9d851846998 Mon Sep 17 00:00:00 2001 From: hackademix Date: Fri, 1 Feb 2019 00:31:00 +0100 Subject: Differentiate Chromium restricted URLs (where extensions cannot operate). --- src/lib/restricted.js | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src') diff --git a/src/lib/restricted.js b/src/lib/restricted.js index b9bddae..840ab69 100644 --- a/src/lib/restricted.js +++ b/src/lib/restricted.js @@ -1,22 +1,22 @@ { // see https://bugzilla.mozilla.org/show_bug.cgi?id=1415644 - let domains = [ - "accounts-static.cdn.mozilla.net", - "accounts.firefox.com", - "addons.cdn.mozilla.net", - "addons.mozilla.org", - "api.accounts.firefox.com", - "content.cdn.mozilla.net", - "content.cdn.mozilla.net", - "discovery.addons.mozilla.org", - "input.mozilla.org", - "install.mozilla.org", - "oauth.accounts.firefox.com", - "profile.accounts.firefox.com", - "support.mozilla.org", - "sync.services.mozilla.com", - "testpilot.firefox.com", - ]; + let domains = UA.isMozilla ? [ + "accounts-static.cdn.mozilla.net", + "accounts.firefox.com", + "addons.cdn.mozilla.net", + "addons.mozilla.org", + "api.accounts.firefox.com", + "content.cdn.mozilla.net", + "content.cdn.mozilla.net", + "discovery.addons.mozilla.org", + "input.mozilla.org", + "install.mozilla.org", + "oauth.accounts.firefox.com", + "profile.accounts.firefox.com", + "support.mozilla.org", + "sync.services.mozilla.com", + "testpilot.firefox.com", + ] : [ "chrome.google.com" ]; function isRestrictedURL(u) { try { -- cgit v1.2.3