..

1.登录猫站

  • 进入个人信息页面,打开做种列表,点卡查看全部记录

2.键盘按F12,找到控制台

3.复制下面这段代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
document.querySelectorAll('.claim-confirm').forEach(function (element) {
var _this = element;
var _dataurl = _this.getAttribute('data-url');
var post_url = 'https://pterclub.com/' + _dataurl;
var xhr = new XMLHttpRequest();

xhr.open('GET', post_url, true);

xhr.onload = function () {
if (xhr.status >= 200 && xhr.status < 300) {
console.log(xhr.responseText);
} else {
console.error('Request failed with status ' + xhr.status);
}
};

xhr.send();
});

4.回车执行代码。

5.如果种子比较多,你需要切换到下一页。再重复复制代码,回车的操作。一次认领一页