// ==UserScript== // @name CSDN 博客显示全文 // @namespace http://tampermonkey.net/ // @version 0.1 // @description CSDN 博客自动显示全文,无需手动点击 // @author You // @match *://blog.csdn.net/*/article/details/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var article_content = $('#article_content'); // 移除限高 article_content.removeAttr('style'); article_content.next().remove(); })();