【代码】知乎去除登录弹窗

前言

知乎去除登录弹窗

源代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ==UserScript==
// @name 知乎去除登录弹窗
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 知乎去除登录弹窗
// @author FeiJu
// @match *://*.zhihu.com/p/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=w3schools.cn
// @grant none
// ==/UserScript==

(function() {
'use strict';
setTimeout(function(){
var e = document.createEvent("MouseEvents");
e.initEvent("click", true, true);
document.getElementsByClassName("Button Modal-closeButton")[0].dispatchEvent(e);
}, 1000);
})();

完成