Y总 发表于 2022-4-15 19:13:04

香肠派对2.0

香肠版本:13.18
除了不会绘制基本全了
闪退,等,用林三过闪
**** Hidden Message *****




1710051058 发表于 2022-4-16 13:17:11

啥也不说了,感谢楼主分享哇!

153504316722 发表于 2022-5-4 01:15:39

正需要,支持楼主大人了!

好家伙 发表于 2022-5-4 19:18:00

胡哈工程信息发广告菲都狄都

么有分,谁能送我点积分啊::>_<::惊魂甫定试试

46023097 发表于 2022-5-10 04:59:09

啥也不说了,感谢楼主分享哇!

zhengtongxue 发表于 2022-5-12 20:47:20

// ==UserScript== // @NAME         txkt-automation // @namespace    http://meethigher.top/blog/2020/txkt-automation/ // @version      1.0 // @description有小伙伴提到这个功能,正好我自己也会用到,就整了。用于腾讯课堂的自动签到 // @author       Kit Chen // @match      https://ke.qq.com/webcourse/index.html // @grant      none // @提示          如果使用过程中出现问题,清除一下cookie就行,不用清除浏览器的所有数据,清除cookie就行 // ==/UserScript== (function() {   'use strict';   function autoAttend() {         let btns;         let attend = setInterval(function() {             btns = document.getElementsByClassName("s-btn s-btn--primary s-btn--m");             if (btns.length > 0) {               console.log(new Date().toLocaleTimeString() + "--完成-->" + btns.innerText);               btns.click();             }         }, 10000);   }   function showBtn() {         let $switch = document.createElement("span");         let $body = document.querySelector(".web");         let show = true;         $switch.innerText = "显示/隐藏";         $switch.style = "position:absolute;top:21px;right:520px;color:#AAAAAA;border-radius:10px;cursor:pointer;z-index:3000";         $switch.onclick = function() {             if (show) {               document.querySelector(".study-body.mr").style = "right:0;z-index:999";               show = false;             } else {               document.querySelector(".study-body.mr").style = "right:300px;z-index:0";               show = true;             }         }         $body.appendChild($switch);   }   function clearRefresh() {         window.localStorage.removeItem("refresh");   }   function autoRefresh() {         window.localStorage.setItem("refresh", "no");         let response = prompt("请输入上课时间的前2分钟,并点击确定按钮开始执行自动刷新!", "13:28");         if (response !== null) {             let arr = response.trim().split(":");             let date;             let timid = setInterval(function() {               date = new Date();               if (date.getHours() == parseInt(arr) && date.getMinutes() == parseInt(arr)) {                     window.location.reload();               }             }, 1000);         } else {             clearRefresh();         }   }   function isRefresh() {         let isRefresh = window.localStorage.getItem("refresh") || "yes";         console.log(isRefresh);         if (isRefresh == "yes") {             autoRefresh();         } else {             clearRefresh();         }   }   isRefresh();   autoAttend();   showBtn(); })();

贺鹏宇 发表于 2022-11-25 10:14:15

贺鹏宇 发表于 2022-11-25 10:14:27

LXB 发表于 2022-12-18 18:29:46

回的人少,我来小顶一下

3398203200 发表于 2023-1-5 23:35:12

前排卖瓜子板凳
页: [1]
查看完整版本: 香肠派对2.0