mirror of
https://github.com/Giu-zhao/ios_rule_script
synced 2024-11-25 18:08:24 +08:00
21 lines
594 B
JavaScript
21 lines
594 B
JavaScript
|
/*
|
|||
|
Netease snail reading unlock vip
|
|||
|
|
|||
|
QX:
|
|||
|
^https?:\/\/p\.du\.163\.com\/gain\/readtime\/info\.json url script-response-body https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/File/wnyd.js
|
|||
|
|
|||
|
Surge4:
|
|||
|
http-response ^https?:\/\/p\.du\.163\.com\/gain\/readtime\/info\.json requires-body=1,max-size=0,script-path=https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/File/wnyd.js
|
|||
|
|
|||
|
Surge & QX MITM = p.du.163.com
|
|||
|
*/
|
|||
|
|
|||
|
var body = $response.body;
|
|||
|
var obj = JSON.parse(body);
|
|||
|
|
|||
|
obj.tradeEndTime = 1679685290000;
|
|||
|
body = JSON.stringify(obj);
|
|||
|
$done({body});
|
|||
|
|
|||
|
//By yxiaocai & JO2EY
|