summaryrefslogtreecommitdiff
path: root/src/content/webglHook.js
diff options
context:
space:
mode:
authorhackademix2018-07-02 01:50:32 +0200
committerhackademix2018-07-02 01:50:32 +0200
commit81bd93a72d0b49fd78908f7c467ae9f324791e23 (patch)
treedaacfeb158f1f6512532d7e4ccafc6da68494aa4 /src/content/webglHook.js
parent673c881559e4f9274be5b54ca35552e12cd8cd76 (diff)
downloadnoscript-81bd93a72d0b49fd78908f7c467ae9f324791e23.tar.gz
noscript-81bd93a72d0b49fd78908f7c467ae9f324791e23.tar.xz
noscript-81bd93a72d0b49fd78908f7c467ae9f324791e23.zip
Simplified and apparently more reliable+flexible+efficient dynamic script injection method.
Diffstat (limited to 'src/content/webglHook.js')
-rw-r--r--src/content/webglHook.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/webglHook.js b/src/content/webglHook.js
index ba0d769..5b83025 100644
--- a/src/content/webglHook.js
+++ b/src/content/webglHook.js
@@ -1,4 +1,4 @@
-console.log("WebGL Hook", document.documentElement.innerHTML);
+console.log("WebGL Hook", document.URL, document.documentElement && document.documentElement.innerHTML);
try {
let proto = HTMLCanvasElement.prototype;
let getContext = proto.getContext;