Greasy Fork

Greasy Fork is available in English.

CSDN 博客显示全文

CSDN 博客自动显示全文,无需手动点击

当前为 2018-10-26 提交的版本,查看 最新版本

// ==UserScript==
// @name         CSDN 博客显示全文
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  CSDN 博客自动显示全文,无需手动点击
// @author       You
// @match        *://blog.csdn.net/*/article/details/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var article_content = $('#article_content');
    // 移除限高
    article_content.removeAttr('style');
    article_content.next().remove();
})();