NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name CSDN免登陆自动加载更多
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 不知道啥时候,csdn需要登录才能查看更多,很烦!!!
// @author xiaoming
// @license MIT
// @copyright 2018, zhoushengming (https://openuserjs.org//users/zhoushengming)
// @match *://blog.csdn.net/*
// @grant none
// @require https://csdnimg.cn/public/common/libs/jquery/jquery-1.9.1.min.js
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$("div.article_content").removeAttr("style");
$("#btn-readmore").parent().remove();
})();