2025-09-02 Show the page unblurred
Here's a bookmarklet to remove the blur filter everywhere.
javascript:(()=>{try{const els=[...document.querySelectorAll('*')];let n=0;for(const el of els){const f=getComputedStyle(el).filter;if(f&&f.includes('blur(')){el.style.setProperty('filter','none','important');n++;}}console.log('Removed blur from '+n+' element'+(n===1?'':'s')+'.');}catch(e){console.error('Bookmarklet error:',e);}})();
This is what it looks like:
javascript:(() => {
try {
const els=[...document.querySelectorAll('*')];
let n=0;
for (const el of els) {
const f = getComputedStyle(el).filter;
if (f && f.includes('blur(')) {
el.style.setProperty('filter','none','important');
n++;
}
}
console.log('Removed blur from '+n+' element'+(n===1?'':'s')+'.');
} catch(e) {
console.error('Bookmarklet error:',e);
}
})();
Via @isotopp@infosec.exchange.