diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-03-04 16:57:07 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-03-04 17:25:17 +0100 |
commit | 4970930c2f866133c38fa73800f1a963f0856692 (patch) | |
tree | 5cb1f7aaa317b02dbc266a62e07c21b05340b106 /background/webrequest.js | |
parent | 7fdb3e8474488de2b18da7e9b63719bb05961819 (diff) | |
download | browser-extension-4970930c2f866133c38fa73800f1a963f0856692.tar.gz browser-extension-4970930c2f866133c38fa73800f1a963f0856692.zip |
prepend all generated console messages with 'Haketilo:'
Diffstat (limited to 'background/webrequest.js')
-rw-r--r-- | background/webrequest.js | 6 |
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}; } |