Greasy Fork is available in English.
把阅读更多的那个啥玩意儿给干掉
当前为
// ==UserScript==
// @name 去你大爷的 CSDN 全文阅读
// @namespace https://gqqnbig.me
// @version 0.2
// @description 把阅读更多的那个啥玩意儿给干掉
// @author laobubu, gqqnbig
// @match http://blog.csdn.net/*/article/details/*
// @match https://blog.csdn.net/*/article/details/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let ef = document.querySelector('.hide-article-box');
if (ef) {
ef.remove();
//document.querySelector('#article_content').style.height='auto';
}
let article_content=document.getElementById("article_content");
article_content.style.height="";
})();