您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
极简主题!
// ==UserScript== // @name 知乎精简主题 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 极简主题! // @author You // @match https://www.zhihu.com/** // @match https://zhuanlan.zhihu.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zhihu.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const style = document.createElement('style'); style.innerText = ` .Question-sideColumn{ display:none } .Question-mainColumn{ width:100% } .Topstory-mainColumn{ width:100% } .AuthorInfo{ max-width:100% } div[data-za-detail-view-path-module=RightSideBar]{ display:none } div.SearchMain + div { display: none; } .SearchMain{ width:100% } ul.Tabs > li:not(:first-child) { display: none; } div.SearchBar{ display: none; } .AppHeader-inner a svg { display: none; } .PageHeader a svg { display: none; } .ColumnPageHeader{ display: none!important; } .origin_image{ width:50%!important } ` document.body.appendChild(style) // Your code here... })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址