知乎不登录无法浏览信息的油猴脚本解决方案(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)
})();

posted on 2020-12-01 14:56  凉云  阅读(1026)  评论(0编辑  收藏  举报

导航