Guest User

Untitled

a guest
Mar 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // this productivity app blurs parts of aby webpage that are currently not important for you to read
  2. // to use it, open devtools with f12, copy the following line to the console and hit enter.
  3.  
  4. Array.prototype.forEach.call(document.getElementsByTagName('*'), e => e.style.filter = `blur(${Math.random() < 0.95 ? 0 : 4}px)`)
Add Comment
Please, Sign In to add comment