Too many websites rely on the CSS blur filter to cheaply obfuscate contents. Here's a bookmarklet to reset all active blur styles from the current page DOM.
(function() {
for (const x of document.querySelectorAll("*")) {
const s = getComputedStyle(x);
for (const k in s) {
if (k.includes("filter") && s.filter.includes("blur")) {