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