Greasy Fork is available in English.

CSDN博客内容自动显示全文

进入CSDN博客时,自动点击“阅读更多”,显示全文

// ==UserScript==
// @name         CSDN博客内容自动显示全文
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  进入CSDN博客时,自动点击“阅读更多”,显示全文
// @author       wgg243
// @match        https://*.csdn.net/*
// @match        http://*.csdn.net/*
// @grant        none
// ==/UserScript==

(function () {
    var readmore = document.getElementById("btn-readmore");
    if (readmore) {
        console.log("get readmore");
        readmore.click();
    } else {
        console.log("false");
    }
})();