// ==UserScript== // @name 美化推酷字体 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 推酷的辣眼字体实在顶不住了 // @author huangqincan // @match https://www.tuicool.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { function addStyle(rules) { var styleElement = document.createElement('style'); styleElement.type = 'text/css'; document.getElementsByTagName('head')[0].appendChild(styleElement); styleElement.appendChild(document.createTextNode(rules)); } addStyle('*{font-family : "Microsoft YaHei"}'); })();