CSDN自动展开阅读全文,不用关注博主
// ==UserScript==
// @name CSDN免关注阅读全文
// @namespace http://tampermonkey.net/
// @version 0.1
// @description CSDN自动展开阅读全文,不用关注博主
// @author CoderBen
// @match https://blog.csdn.net/*
// @grant none
// @icon https://g.csdnimg.cn/static/logo/favicon32.ico
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.querySelector('#article_content').style.height = 'auto'
document.querySelector('.hide-article-box').style.display = 'none'
})()