NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name prettyCSDN // @namespace http://tampermonkey.net/ // @version 0.2 // @description Better reading environment in CSDN // @author haxck // @match *://blog.csdn.net/* // @grant none // @license MIT // ==/UserScript== (function(){ 'use strict'; $("#article_content").css("height" , "100%"); $(".readall_box").css("display", "none"); $(".pulllog-box").remove(); })();