Skip to content

Instantly share code, notes, and snippets.

@mfandl
Created March 9, 2018 12:24
Show Gist options
  • Save mfandl/373bc64c39f3ca86eec7f511a5e755aa to your computer and use it in GitHub Desktop.
Save mfandl/373bc64c39f3ca86eec7f511a5e755aa to your computer and use it in GitHub Desktop.
// this productivity app blurs parts of aby webpage that are currently not important for you to read
// to use it, open devtools with f12, copy the following line to the console and hit enter.
Array.prototype.forEach.call(document.getElementsByTagName('*'), e => e.style.filter = `blur(${Math.random() < 0.95 ? 0 : 4}px)`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment