// ==UserScript== // @name 掘金小册阅读优化 // @version 1.0 // @description 优化掘金小册的阅读体验,使其布局更加合理,充分利用空间,显示更多内容 // @namespace https://greasyfork.org/users/764555 // @author 冰冻大西瓜 // @match https://juejin.cn/book/*/section/* // @icon https://www.google.com/s2/favicons?sz=64&domain=juejin.cn // @run-at document-body // @grant none // @license GPLv3 // ==/UserScript== const style = document.createElement('style') style.innerHTML = ` .handle.book-direction{ display: none !important; } .section-page.book-section-view{ min-width: 100% !important; } .book-body.transition--next{ padding-top: 60px !important; } .markdown-body{ font-size: 20px; } ` document.head.appendChild(style)