// ==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/* // @downloadURL none // ==/UserScript== (function() { 'use strict' var rm=document.getElementById("btn-readmore") if(rm){ rm.parentNode.remove() document.getElementById('article_content').style='auto'; } })();