知乎自动关闭登录框

知乎自动关闭登录框,首页跳转搜索

// ==UserScript==
// @name         知乎自动关闭登录框
// @namespace    https://greasyfork.org/zh-CN/users/329780-zs6
// @version      0.3
// @description  知乎自动关闭登录框,首页跳转搜索
// @author       zs6
// @license      GPL-3.0-only
// @match        https://www.zhihu.com/*
// ==/UserScript==

(function() {
    'use strict';
    if(/sign/.test(location.href)){location.href = 'https://www.zhihu.com/search';}
    window.onload=function(){ document.querySelector(".Modal-closeButton").click();}
    document.onscroll=function(){
        var closeButton = document.querySelector(".Modal-closeButton");
        if(closeButton !== null){
        closeButton.click();
        }
    }
})();