掘金小册文章宽屏

修改掘金小册文章及评论宽屏布局,更加美观,显示更多的内容。

目前為 2023-07-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name         掘金小册文章宽屏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  修改掘金小册文章及评论宽屏布局,更加美观,显示更多的内容。
// @author       shadow
// @match        *://juejin.cn/book/*
// @grant        none
// @icon         https://b-gold-cdn.xitu.io/favicons/v2/favicon-32x32.png
// @require      https://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @license      MIT License
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(
        function(){
            // 移除翻页按钮
            $(".step-btn.step-btn--prev").remove();
            $(".step-btn.step-btn--next").remove();
            // 小册正文宽屏
            $(".section-page.book-section-view").css({"max-width":"95%"});
            // 小册评论宽屏
            $(".book-comments .container").css({"max-width":"100%"})
        },3000);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址