// ==UserScript== // @name 知乎-关闭右侧栏 - zhihu.com // @namespace Violentmonkey Scripts // @match https://www.zhihu.com/* // @grant none // @version 1.0 // @author JackyChou // @license GPL License // @description 2022/11/28 17:36:07 // @downloadURL none // ==/UserScript== (function () { 'use strict'; const changeNode = () => { let contentNode = document.getElementsByClassName('Topstory-container'); if (!contentNode.length) contentNode = document.getElementsByClassName('Question-main'); if (contentNode.length) { const leftNode = contentNode[0].children[0]; const righNode = contentNode[0].children[1]; righNode.style.display = 'none'; leftNode.style.width = '100%'; leftNode.style.maxWidth = '100%'; const mainColumnNode = document.getElementsByClassName('Question-mainColumn')[0]; if (mainColumnNode) mainColumnNode.style.width = '100%'; } }; changeNode(); })();