// ==UserScript== // @name 小林coding全文显示 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description [小林coding](https://www.xiaolincoding.com/)全文显示文章内容 // @author You // @match https://www.xiaolincoding.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=xiaolincoding.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 简单粗暴的实现方式,每隔500毫秒把隐藏的文章内容显示出来并隐藏阅读全文按钮 setInterval(()=>{ document.querySelector("#readmore-container").style.height = ""; document.querySelector("#readmore-container").style.overflow = ""; document.querySelector("#readmore-wrapper").style.display = "none"; },500) })();