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 @@