try to take over the world!
当前为
// ==UserScript==
// @name New Userscript
// @namespace *
// @version 0.1
// @description try to take over the world!
// @author You
// @match htt*://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var node = document.createElement("style");
node.innerText = "img{filter:blur(2px);}";
document.body.appendChild(node);
})();