mirror of
https://github.com/KOP-XIAO/QuantumultX.git
synced 2026-01-26 01:35:09 +00:00
re-group
This commit is contained in:
35
Scripts/aimeiju.js
Normal file
35
Scripts/aimeiju.js
Normal file
@@ -0,0 +1,35 @@
|
||||
var body = $response.body;
|
||||
var url = $request.url;
|
||||
const path1 = "/app/ios/user/index";
|
||||
const path2 = "/app/ios/vod/show";
|
||||
const path3 = "/app/ios/ads/index";
|
||||
|
||||
if (url.indexOf(path1) != -1){
|
||||
let obj = JSON.parse(body);
|
||||
obj.data.user["viptime"] = "2066-01-01 08:00:00";
|
||||
obj.data.user["cion"] = "66666";
|
||||
obj.data.user["vip"] = "1";
|
||||
body = JSON.stringify(obj);
|
||||
}
|
||||
|
||||
if (url.indexOf(path2) != -1){
|
||||
let obj = JSON.parse(body);
|
||||
obj.data["looktime"] = -1;
|
||||
obj.data["vip"] = "4";
|
||||
body = JSON.stringify(obj);
|
||||
}
|
||||
|
||||
if (url.indexOf(path3) != -1){
|
||||
let obj = JSON.parse(body);
|
||||
obj.data["pic"] = "http://ww1.sinaimg.cn/large/0076dY5Wgy1g36mmbdvv7j30gf0zkwf2.jpg";
|
||||
obj.data["url"] = "https://t.me/meetaclub";
|
||||
body = JSON.stringify(obj);
|
||||
}
|
||||
|
||||
$done({body});
|
||||
|
||||
|
||||
|
||||
// Made by Meeta(爱美剧)(官网下载:app.meiju2018.com)
|
||||
// https?:\/\/mjappaz.yefu365.com\/index.php\/app\/ios\/
|
||||
// hostname = mjappaz.yefu365.com
|
||||
Reference in New Issue
Block a user