// ==UserScript== // @name CSDN Reformater // @namespace http://www.csdn.net/ // @version 0.1.1 // @description remove everything except author information and main content. // @author Mianjune Hong // @license GPL version 3 // @match *://blog.csdn.net/*/article/details/* // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function () { 'use strict'; $('#btn-readmore').click(); var content = $('div.blog-content-box'); var info = $(''); $('#asideProfile > .aside-title').remove(); info.append($('#asideProfile')); info.mouseenter(function(){$('#asideProfile').css('display','');}).mouseleave(function(){$('#asideProfile').css('display','none');}); $('body').remove(); $('html').append($('
').append($('').append(info).append($('').append(content))).append('')); info.mouseleave(); })();