diff --git a/core/interceptor.js b/core/interceptor.js index 0f8b4ad7..6fe1daae 100644 --- a/core/interceptor.js +++ b/core/interceptor.js @@ -34,7 +34,10 @@ interceptor.handleRequest = function (requestDetails, tabIdentifier, tab) { let validCandidate, targetDetails, targetDomain, isGoogleFont, isGoogleMaterialIcons, initiatorDomain, isListed; if (requestDetails['type'] === WebRequestType.MAIN_FRAME && - helpers.checkAllowlisted(tab.url, requestAnalyzer.allowlistedDomains)) { + helpers.checkAllowlisted( + helpers.extractDomainFromUrl(tab.url, true), + requestAnalyzer.allowlistedDomains + )) { return { 'cancel': false };