Skip to content

Instantly share code, notes, and snippets.

@AlanGreene
Forked from sindresorhus/blur-prank.user.js
Created March 13, 2019 23:10
Show Gist options
  • Save AlanGreene/27df8350883d7fad7df2f16a6997c83b to your computer and use it in GitHub Desktop.
Save AlanGreene/27df8350883d7fad7df2f16a6997c83b to your computer and use it in GitHub Desktop.
Blur prank UserScript

Most annoying prank ever. Applies 0.5px blur to every website.

Currently only works in Chrome.

Open the Extensions panel and drag the blur-prank.user.js file in on your victims browser.

// ==UserScript==
// @name Dictionary
// @version 0.1
// @author Sindre Sorhus
// @include *
// ==/UserScript==
document.documentElement.style.webkitFilter='blur(0.5px)';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment