From de6522534da986a45f849aafac4277e4a351728e Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 12 Jul 2020 15:45:20 +0200 Subject: [PATCH] Blocking handling of "Google Fonts" improved --- core/interceptor.js | 2 +- pages/updates/updates.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/interceptor.js b/core/interceptor.js index 5bf1669e..6cd6f42f 100644 --- a/core/interceptor.js +++ b/core/interceptor.js @@ -35,7 +35,7 @@ interceptor.handleRequest = function (requestDetails, tabIdentifier, tab) { validCandidate = requestAnalyzer.isValidCandidate(requestDetails, tab); if (requestDetails.url.startsWith('https://fonts.googleapis.com/css?family')) { - if(interceptor.blockGoogleFonts) { + if(interceptor.blockGoogleFonts === true || interceptor.blockMissing === true) { return { 'cancel': true }; diff --git a/pages/updates/updates.html b/pages/updates/updates.html index 0e96e59d..c239b7c1 100644 --- a/pages/updates/updates.html +++ b/pages/updates/updates.html @@ -32,6 +32,7 @@
  • Implemented: Collapsible changelog for previous versions(reported by email)
  • Added: Jets.js v0.14.1 (#56)
  • Added: Vanilla-Lazyload v17.1.0 (#56)
  • +
  • Fixed: Blocking handling of "Google Fonts" improved
  • Generate rule sets for uBlock or uMatrix