直接全文阅读程序猿DD的文章
// ==UserScript==
// @name 程序猿DD全文阅读
// @namespace https://github.com/LazyBug1E0CF
// @version 0.1
// @description 直接全文阅读程序猿DD的文章
// @author Lazybug
// @match http://blog.didispace.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 显示全文
let articleEle = document.querySelector("article");
articleEle.style.height = '';
// 删除阅读全文按钮
let rme = document.querySelector("#read-more-wrap");
rme.parentElement.removeChild(rme);
})();