// ==UserScript== // @name 百家号幸运大抽奖自动抽奖 // @namespace https://docs.scriptcat.org/ // @version 0.1.0 // @description try to take over the world! // @author You // @match https://baijiahao.baidu.com/builder/bjh-activity/lottery // @require https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.6.0/jquery.min.js // @grant none // @noframes // ==/UserScript== (function () { 'use strict'; // Your code here... // $('div[role="activeItem"]') setInterval(function () { var v = $('div[class="btn--nUB_g"]'); if (v.length>0) { $(v[0]).click(); } console.log('每5秒执行一次'); // 例如:更新内容、发送请求等 $('div[role="activeItem"]')[0].click(); }, 10000); // 5000毫秒 = 5秒 })();