aboutsummaryrefslogtreecommitdiff
path: root/background/webrequest.js
diff options
context:
space:
mode:
Diffstat (limited to 'background/webrequest.js')
-rw-r--r--background/webrequest.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/background/webrequest.js b/background/webrequest.js
index bceba26..f0c5b1b 100644
--- a/background/webrequest.js
+++ b/background/webrequest.js
@@ -117,7 +117,7 @@ function on_before_request(details)
return;
#IF DEBUG
- console.debug(`Settings queried using XHR for '${details.url}'.`);
+ console.debug(`Haketilo: Settings queried using XHR for '${details.url}'.`);
#ENDIF
/*
@@ -129,7 +129,7 @@ function on_before_request(details)
const queried_url = decodeURIComponent(match[1]);
if (details.initiator && !queried_url.startsWith(details.initiator)) {
- console.warn(`Blocked suspicious query of '${url}' by '${details.initiator}'. This might be the result of page fingerprinting the browser.`);
+ console.warn(`Haketilo: Blocked suspicious query of '${url}' by '${details.initiator}'. This might be the result of page fingerprinting the browser.`);
return {cancel: true};
}
@@ -140,7 +140,7 @@ function on_before_request(details)
}
}
- console.warn(`Bad request! Expected ${browser.runtime.getURL("dummy")}?url=<valid_urlencoded_url>. Got ${details.url}. This might be the result of page fingerprinting the browser.`);
+ console.warn(`Haketilo: Bad request! Expected ${browser.runtime.getURL("dummy")}?url=<valid_urlencoded_url>. Got ${details.url}. This might be the result of page fingerprinting the browser.`);
return {cancel: true};
}