Skip to content

Commit 3ae5cd5

Browse files
committed
Reverted <noscript> replacement to <span> over fingerprinting concerns.
1 parent 609a6fe commit 3ae5cd5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/content/onScriptDisabled.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function onScriptDisabled() {
22
for (let noscript of document.querySelectorAll("noscript")) {
33
// force show NOSCRIPT elements content
4-
let replacement = createHTMLElement("no-script");
4+
let replacement = createHTMLElement("span");
55
replacement.innerHTML = noscript.innerHTML;
66
noscript.parentNode.replaceChild(replacement, noscript);
77
// emulate meta-refresh

0 commit comments

Comments
 (0)