CSDN 免登陆查看全文内容

免登陆查看全文内容

目前为 2018-11-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         CSDN 免登陆查看全文内容
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  免登陆查看全文内容
// @author       Ex1t
// @match        http://blog.csdn.net/*/article/details/*
// @match        https://blog.csdn.net/*/article/details/*
// ==/UserScript==

(function() {
    'use strict'
    var rm=document.getElementById("btn-readmore")
    if(rm){
        rm.parentNode.remove()
        document.getElementById('article_content').style='auto';
    }
})();