NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/sysdzw // @name 微标知乎批量邀请v1.0 // @description 知乎批量邀请工具,只要打开知乎页面,检测到可邀请的便会全部邀请,建议平常禁用,在要使用的时候启用然后刷新页面即可。 // @copyright 2021, sysdzw (https://openuserjs.org/users/sysdzw) // @license Apache-2.0 // @version 1.0.0 // @include https://www.zhihu.com/question/* // @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js // @grant none // ==/UserScript== // ==OpenUserJS== // @author sysdzw // ==/OpenUserJS== setInterval( function () { $("button").each(function () { if ($(this).text() == "邀请回答") { $(this).click(); } }); }, 5000 );