Greasy Fork is available in English.

知乎专栏免登陆

try to take over the world!

À partir de 2022-11-20. Voir la dernière version.

// ==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
// ==/UserScript==

const task = setInterval(() => {
    try {
        document.querySelector('div.signFlowModal button.Modal-closeButton').click()
        clearInterval(task)
    }
    catch { }
}, 100)