知乎简化版

知乎简化版,去掉固定和浮动内容, 只保留最基本的正文.

目前為 2018-02-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name         知乎简化版
// @namespace    https://gf.qytechs.cn/scripts/38774
// @version      0.3
// @description  知乎简化版,去掉固定和浮动内容, 只保留最基本的正文.
// @author       chaosky
// @match        https://www.zhihu.com/question/*
// @match        https://www.zhihu.com/people/*
// @match        https://www.zhihu.com/topic/*
// @match        https://www.zhihu.com/search?*
// @match        https://www.zhihu.com
// @grant        GM_log
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle('.CommentEditor-input { display: none !important; }');
    GM_addStyle('.CommentEditor-singleButton { display: none !important; }');
    GM_addStyle('.Sticky.is-fixed { position: relative !important; }');
    GM_addStyle('.Question-sideColumn--sticky { position: relative !important; }');
    GM_addStyle('.AppHeader { display: none !important; }');
    GM_addStyle('.GlobalSideBar { display: none !important; }');
    GM_addStyle('.Question-sideColumn { display: none !important; }');
})();

QingJ © 2025

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