NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Blur Images // @namespace http://tampermonkey.net/ // @version 0.1 // @author Mikhail Yevchenko // @match http://*/* // @match https://*/* // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function() { 'use strict'; var D = document; var H = D.head; var s = D.createElement('style'); s.setAttribute('type', 'text/css'); s.appendChild(D.createTextNode('img{filter:blur(2em)}')); H.appendChild(s); })();