Initial commit: new history

This commit is contained in:
king
2025-06-30 21:59:46 +08:00
commit cd32a8c7e5
1945 changed files with 111356 additions and 0 deletions

20
Scripts/xxyx/xxyx.js Normal file
View File

@ -0,0 +1,20 @@
/**
* @author fmz200
* @function 晓晓优选 测试
* @date 2024-05-16 08:16:13
*/
let requestUrl = $request.url;
let responseBody = $response.body;
let obj = JSON.parse(responseBody);
// 能量解锁,可以直接兑换好礼
// 官方加了验证,已不可用
// ^https:\/\/xxyx-client-api\.xiaoxiaoyouxuan\.com\/client\/energy\/mall\/getUserEnergy url script-response-body xxyx.js
if (requestUrl.includes("/client/energy/mall/getUserEnergy")) {
obj.data.energy = 10086;
console.log('设置energy成功💕');
}
$done({body: JSON.stringify(obj)});

166
Scripts/xxyx/xxyx_signin.js Normal file

File diff suppressed because one or more lines are too long