知乎免登录

1.【重要更新】关闭弹窗登录

// ==UserScript==
// @name         知乎免登录
// @namespace    http://tampermonkey.net/
// @version      0.8
// @description  1.【重要更新】关闭弹窗登录
// @author       galan99
// @match        *://*.zhihu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function() {
        if (location.href.includes('www.zhihu.com/question/')) {
            var html = document.querySelector('html')
            var dialog = document.querySelectorAll('.Modal-wrapper')
            dialog.forEach(key => {
                key.style = 'display:none;!important'
            })
            html.style = 'overflow:auto;'
            console.log('知乎加载')
        }
    }
})();