// ==UserScript== // @name 学习公社弹窗关闭 // @namespace www.ttcdw.cn // @version 0.1 // @description 学习公社弹窗打卡自动执行 // @author sunny // @match https://*.ttcdw.cn/* // @icon https://www.google.com/s2/favicons?sz=64&domain=scriptcat.org // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(()=>{ let clockBtn = document.querySelector("#comfirmClock") if(clockBtn!==null){ clockBtn.click() console.log("已自动打卡!") } },1000) })();