// ==UserScript== // @name 阮一峰ES6入门样式优化 // @version 0.2.3 // @namespace http://tampermonkey.net // @description fontSize Changed // @author SatanFaker // @match http://*.ruanyifeng.com/* // @grant none // @downloadURL none // ==/UserScript== // @run-at document-end (function () { var content=document.getElementById("content") content.style.width = "70%"; content.style.margin = " 0 auto"; $(function() { $('#contebt code').css({ "fontSize":"0.9rem" }) }); })();