haxck / prettyCSDN

// ==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();
})();