知乎不登录无法浏览信息的油猴脚本解决方案(2020年12月1日 可用)


// ==UserScript==
// @name         知乎净化
// @namespace    http://nzxy.kim/
// @version      0.1
// @description  知乎登录问题
// @author       You
// @match        *.zhihu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const styleElement     = document.createElement('style')
    styleElement.innerHTML = `
      .Modal-enter-done{
        display: none
      }
      .QuestionPage{
        overflow: scroll;
        max-height: 100vh
      }
      .Pc-word{
        display: none;
      }
      .Pc-card{
        display: none;
      }
      `
    document.body.appendChild(styleElement)
})();


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM