// ==UserScript== // @name 知乎专栏免登陆 // @namespace http://tampermonkey.net/ // @version 1.2 // @description try to take over the world! // @author You // @match https://zhuanlan.zhihu.com/p/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zhihu.com // @grant none // @downloadURL none // ==/UserScript== const task = setInterval(() => { try { document.querySelector('div.signFlowModal button.Modal-closeButton').click() clearInterval(task) } catch { } }, 100)