More aggressive blocking for data: refresh attempts (thanks insertscript).

This commit is contained in:
hackademix 2020-03-20 22:20:28 +01:00
parent 949d930662
commit ab2f078ca6
1 changed files with 2 additions and 2 deletions

View File

@ -118,8 +118,8 @@ notifyPage();
addEventListener("DOMContentLoaded", e => {
if (ns.canScript) return;
for (let m of document.querySelectorAll("meta[http-equiv=refresh]")) {
if (/^[^,;]*[,;]url[^\w=]*=\s*data:/.test(m.getAttribute("content"))) {
let url = m.getAttribute("content").replace(/.*?(?=data:)/, "");
if (/^[^,;]*[,;]\W*url[^=]*=[^!#$%&'()*+,/:;=?@[\]\w.,~-]*data:/i.test(m.getAttribute("content"))) {
let url = m.getAttribute("content").replace(/.*?(?=data:)/i, "");
log(`Blocking refresh to ${url}`);
window.stop();
}