You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
javascript:(function() { var body = document.body; var blurred = false; body.style.filter = "blur(5px)"; body.style.backgroundColor = "rgba(0,0,0,0.5)"; var interval = setInterval(function() { var unblur = confirm("Do you want to un-blur the screen?"); if (unblur) { clearInterval(interval); body.style.filter = "none"; body.style.backgroundColor = ""; } }, 5000);})();