知乎去除header

知乎样式修改,去掉问题页的header通栏

// ==UserScript==
// @name         知乎去除header
// @namespace    zhihu-remove-header
// @description  知乎样式修改,去掉问题页的header通栏
// @version      1.0
// @author       [email protected]
// @match        *://www.zhihu.com/question/*
// ==/UserScript==

(function() {
    'use strict';
    document.querySelector('header').style = 'display:none;'
    document.querySelector('.Question-sideColumn.Question-sideColumn--sticky').style = 'display:none;'
    document.querySelector('.Question-mainColumn').style = 'width:1000px;'
})();

QingJ © 2025

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