您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to fuck over the fucking teachers who care you a lot
// ==UserScript== // @name 腾讯课堂自动签到、答题 // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to fuck over the fucking teachers who care you a lot // @author BowenYou // @match https://ke.qq.com/* // @grant none // ==/UserScript== (function() { 'use strict'; const timer = setInterval(function () { var date = new Date(); let sj = date.getHours() + "-" + date.getMinutes(); let signIn = document.getElementsByClassName("s-btn--m")[0]; if (signIn) { let signInValue = signIn.innerHTML; if (signInValue == "签到") { console.log(sj + "签到"); signIn.click(); // clearInterval(timer); }else { console.log(sj + "回答问题") signIn.click(); } return; } console.log(sj + "不存在"); }, 1000) })();