This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ====== 第一步:获取请求信息 ====== | |
| // 1. 打开开发者工具 (F12) | |
| // 2. 转到 Network(网络) 标签 | |
| // 3. 正常点击一次摇摇乐按钮 | |
| // 4. 在网络请求中找到摇摇乐请求(通常是 POST 请求) | |
| // 5. 右键点击该请求 -> Copy -> Copy as fetch | |
| // ====== 第二步:修改并执行以下脚本 ====== | |
| // 配置参数 | |
| const REQUEST_INTERVAL = 5000; // 请求间隔 (毫秒) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var x = 1; | |
| var timeL = setInterval(function() { | |
| x++; | |
| document.querySelector('.send-commont').children[0].focus(); | |
| document.querySelector('.send-commont').children[0].value = '疯狂签到求加更(' + x + '/100)'; | |
| document.querySelector('.send-commont').children[1].children[2].className = ""; | |
| document.querySelector('.send-commont').children[1].children[2].click(); | |
| if (x == 100) { | |
| clearInterval(timeL); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name byrbt趣味盒图片放大v2 | |
| // @version 1.2.2 | |
| // @author camedeus,tiger | |
| // @description 放大byrbt主页和历史趣味盒图片,基于byr社区的原始版本进行修改,支持更换域名后的byr和新版主页地址,添加了开源协议. | |
| // @icon https://bt.byr.cn/favicon.ico | |
| // @match *://bt.byr.cn/* | |
| // @match *://byr.pt/* | |
| // @grant none | |
| // @namespace https://gist.github.com/Devil-Z/1c68b4eee9b28164dbad64c8890ca089 |