// ==UserScript== // @name jianshu Clean // @name:zh-CN 简书净化 // @namespace https://slaier.github.io/ // @version 1.0 // @author slaier // @description jianshu auto readmore. // @description:zh-cn 简书自动展开。 // @include https://www.jianshu.com/p/* // @grant GM_addStyle // @icon https://www.jianshu.com/favicon.ico // @run-at document-end // @downloadURL none // ==/UserScript== (function () { 'use strict'; GM_addStyle("#note-show .content .show-content-free .collapse-free-content {overflow: scroll}"); })();