在Via浏览器关闭知乎登录弹窗

不知道什么时候开始知乎的登录提示窗口变得大的不得了,手机上横屏都没法关闭

恰好Via是个有意思的手机浏览器,通过下面插件可以自动关闭这个知乎的弹出登录框

在 Via的设置里添加脚本,粘贴下面内容内容保存即可

// ==UserScript==
// @name         知乎登录窗口
// @namespace    https://viayoo.com/
// @version      0.1
// @description  try to take over the world!
// @author       You// @run-at       document-start// @match        https://*.zhihu.com/*// @grant        none
// ==/UserScript==(function(){ window.onload = document.querySelector('.Modal-closeButton')?.click();})();

其实就是模拟点击关闭的动作,方法转载自https://www.cnblogs.com/pangqianjin/p/15812283.html