mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-04 20:28:52 +01:00
af47ee8d87
blockAll did not block readout-API. This could be relevant if a user changes the setting and an open tab still holds a reference to a canvas-context.
98 lines
2.0 KiB
JavaScript
98 lines
2.0 KiB
JavaScript
/* global console,exports */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
function getDomainRegExpList(domainList){
|
|
"use strict";
|
|
|
|
var list = domainList
|
|
.split(",")
|
|
.map(function(entry){
|
|
return entry.replace(/^\s+|\s+$/g, "");
|
|
})
|
|
.filter(function(entry){
|
|
return !!entry.length;
|
|
})
|
|
.map(function(entry){
|
|
var regExp;
|
|
var domain = !!entry.match(/^[\w.]+$/);
|
|
if (domain){
|
|
regExp = new RegExp("(?:^|\\.)" + entry.replace(/([\\\+\*\?\[\^\]\$\(\)\{\}\=\!\|\.])/g, "\\$1") + "\\.?$", "i");
|
|
}
|
|
else {
|
|
regExp = new RegExp(entry, "i");
|
|
}
|
|
return {
|
|
match: function(url){
|
|
if (domain){
|
|
return url.hostname.match(regExp);
|
|
}
|
|
else {
|
|
return url.href.match(regExp);
|
|
}
|
|
}
|
|
};
|
|
});
|
|
|
|
list.match = function(url){
|
|
return this.some(function(entry){
|
|
return entry.match(url);
|
|
});
|
|
};
|
|
|
|
return list;
|
|
}
|
|
|
|
function checkURL(url, blockMode, whiteList, blackList){
|
|
"use strict";
|
|
|
|
var mode = "block";
|
|
switch (blockMode){
|
|
case "blockEverything":
|
|
mode = "block";
|
|
break;
|
|
case "allowOnlyWhiteList":
|
|
if (url && whiteList.match(url)){
|
|
mode = "unblock";
|
|
}
|
|
else {
|
|
mode = "block";
|
|
}
|
|
break;
|
|
case "ask":
|
|
case "blockReadout":
|
|
case "fakeReadout":
|
|
case "askReadout":
|
|
if (url && whiteList.match(url)){
|
|
mode = "unblock";
|
|
}
|
|
else if (url && blackList.match(url)){
|
|
mode = "block";
|
|
}
|
|
else {
|
|
mode = blockMode;
|
|
}
|
|
break;
|
|
case "blockOnlyBlackList":
|
|
if (url && blackList.match(url)){
|
|
mode = "block";
|
|
}
|
|
else {
|
|
mode = "unblock";
|
|
}
|
|
break;
|
|
case "allowEverything":
|
|
mode = "unblock";
|
|
break;
|
|
default:
|
|
console.log("Unknown blocking mode (" + blockMode + "). Default to block everything.");
|
|
}
|
|
return mode;
|
|
}
|
|
|
|
try {
|
|
exports.getDomainRegExpList = getDomainRegExpList;
|
|
exports.checkURL = checkURL;
|
|
}
|
|
catch(e){} |