知乎web干掉登录(不可用)弹窗

知乎web 干掉登录(不可用)弹窗

目前为 2020-12-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         知乎web干掉登录(不可用)弹窗
// @namespace    http://tampermonkey.net/
// @version      0.10
// @description  知乎web 干掉登录(不可用)弹窗  
// @author       海绵宝宝
// @match        https://www.zhihu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function(){
        if(document.querySelector(".Modal-enter-done")!=null){
            document.querySelector("html").style.overflow = ""
            document.querySelector("body > div:nth-last-child(1)").remove()
        }
    }, 3000);
    // Your code here...
})();

QingJ © 2025

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