您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
精简知乎的显示
// ==UserScript== // @name ZhihuEasy // @namespace http://tampermonkey.net/ // @version 2025-09-04 // @description 精简知乎的显示 // @author Ma1 // @match https://www.zhihu.com/* // @grant GM_addStyle // @license MIT // ==/UserScript== GM_addStyle(` .Topstory-container{ width:auto !important; max-width:768px; } .Topstory-mainColumn > *:not(:last-child) { display:none; } div[data-za-detail-view-path-module="RightSideBar"]{ display:none !important; } .Topstory-mainColumn{ width:98% !important; margin-left:0 !important; margin-right:0 !important; } `);