-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavdb.js
54 lines (45 loc) · 1.69 KB
/
javdb.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*************************************
项目名称:JavDB-净化/解锁VIP
下载地址:https://javdb008.com
更新日期:2024-07-30
使用声明:⚠️仅供参考,🈲转载与售卖!
**************************************
[rewrite_local]
^https?:\/\/api\.hechuangxinxi\.xyz\/api\/v\d\/(users|startup|ads) url script-response-body https://raw.githubusercontent.com/Godfox9527/x/main/javdb.js
;^https?:\/\/api\.hechuangxinxi\.xyz\/api\/v\d\/(movies|movie_played) url script-request-header https://raw.githubusercontent.com/Godfox9527/x/main/javdb.js
[mitm]
hostname = api.hechuangxinxi.xyz
*************************************/
const chxm1024 = {};
const url = $request.url;
const chxm1023 = JSON.parse(typeof $response != "undefined" && $response.body || null);
if (typeof $response == "undefined") {
//const headers = $request.headers;
//headers["authorization"] = "Bearer eyJhbGciOiJIUzI1NiJ9.eyJpZCI6MzU4NjE0NSwidXNlcm5hbWUiOiJ3eGJfOTUyNyJ9.T5Y_OVYKcE7pvzYJNGBWjDj7UnE1dnbPSzzY4Eo8v0g";
//chxm1024.headers = headers;
} else {
if(/users/.test(url)){
chxm1023.data.user = Object.assign({}, chxm1023.data.user, {
"promotion_days" : 9999,
"vip_expired_at" : "2099-09-09T09:09:09.000+09:00",
"is_vip" : true
});
chxm1023.banner_type = "payment";
}
if(/startup/.test(url)){
chxm1023.data.splash_ad = {
"enabled" : false,
"overtime" : 0,
"ad" : null
};
chxm1023.data.settings.UPDATE_DESCRIPTION = "";
chxm1023.data.settings.NOTICE = "";
chxm1023.data.feedback.placeholder = "";
}
if(/ads/.test(url)){
chxm1023.data.enabled = false;
chxm1023.data.ads = {};
}
chxm1024.body = JSON.stringify(chxm1023);
}
$done(chxm1024);