知乎优化

Sets custom widths and hides specified elements on Zhihu

// ==UserScript==
// @name         知乎优化
// @namespace    http://tampermonkey.net/
// @version      0.6
// @description  Sets custom widths and hides specified elements on Zhihu
// @author       You
// @match        https://www.zhihu.com/*
// @match        http://www.zhihu.com/*
// @match        https://zhihu.com/*
// @match        http://zhihu.com/*
// @grant        none
// @license MIT
// @run-at       document-start
// ==/UserScript==
(function() {
    'use strict';
    
    // 创建样式表
    const style = document.createElement('style');
    style.textContent = `
        .Topstory-mainColumn, .Question-mainColumn {
            width: 100% !important;
        }
        
        .css-11p8nt5, .css-1kjxdzv {
            max-width: 0px !important;
            min-width: 950px !important;
        }
        
        .Question-sideColumn {
            display: none !important;
        }
        
        .css-1qyytj7 > div,
        .css-29q9fa,
        li.Tabs-item--noMeta.AppHeader-Tab.Tabs-item:nth-of-type(3),
        li.Tabs-item--noMeta.AppHeader-Tab.Tabs-item:nth-of-type(4),
        .css-18vqx7l > .fEPKGkUK5jyc4fUuT0QP.Button--plain.FEfUrdfMIKpQDJDqkjte.css-79elbk.Button {
            display: none !important;
        }
    `;
    
    // 在页面开始加载时就插入样式
    document.documentElement.appendChild(style);
})();

QingJ © 2025

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