您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
使简书文章具有宽屏的阅读体验
// ==UserScript== // @name 简书文章阅读模式 // @namespace https://tampermonkey.net/ // @version 0.1 // @description 使简书文章具有宽屏的阅读体验 // @author Cyrus // @homepage https://github.com/cyrus-lin/jianshu-readmode // @match https://www.jianshu.com/p/* // @grant none // ==/UserScript== (function() { 'use strict'; if(location.hostname == "www.jianshu.com" && location.pathname.startsWith("/p/")) { document.querySelector("._2OwGUo").remove(); // 移除右边栏目 document.querySelector("._2xr8G8").parentNode.remove(); // 移除 footer document.querySelector("._3Pnjry").remove(); // 移除左边的浮动按钮 document.querySelector("._3VRLsv").setAttribute("style", "margin-left:0px;margin-right:0px;width:95%"); // 扩大正文区域 document.querySelector("._gp-ck").setAttribute("style", "width:100%"); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址