知乎样式修改,去掉问题页的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;' })();