mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2025-06-05 21:49:31 +02:00
Improved: Handling with blocked resources
This commit is contained in:
@ -35,11 +35,7 @@ interceptor.handleRequest = function (requestDetails, tabIdentifier, tab) {
|
|||||||
validCandidate = requestAnalyzer.isValidCandidate(requestDetails, tab);
|
validCandidate = requestAnalyzer.isValidCandidate(requestDetails, tab);
|
||||||
|
|
||||||
if (requestDetails.url.startsWith('https://fonts.googleapis.com/css?family')) {
|
if (requestDetails.url.startsWith('https://fonts.googleapis.com/css?family')) {
|
||||||
if(interceptor.blockGoogleFonts === true || interceptor.blockMissing === true) {
|
if(interceptor.blockGoogleFonts !== false && interceptor.blockMissing !== false) {
|
||||||
return {
|
|
||||||
'cancel': true
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
return {
|
return {
|
||||||
'cancel': false
|
'cancel': false
|
||||||
};
|
};
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
New in LocalCDN:
|
New in LocalCDN:
|
||||||
</div>
|
</div>
|
||||||
<ul>
|
<ul>
|
||||||
<li></li>
|
<li>Improved: Handling with blocked resources (reported by email)</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div id="generator-section">
|
<div id="generator-section">
|
||||||
<div class="topic-label">
|
<div class="topic-label">
|
||||||
|
Reference in New Issue
Block a user