您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
修改掘金小册文章及评论宽屏布局,更加美观,显示更多的内容。
当前为
// ==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或关注我们的公众号极客氢云获取最新地址