forked from adsproo/txnews
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaimeiju.js
More file actions
74 lines (66 loc) · 2.99 KB
/
aimeiju.js
File metadata and controls
74 lines (66 loc) · 2.99 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
爱美剧 unlock vip(官网:xmj.app)
QX :
^https?:\/\/mjapp.anlujia.com\/index\.php\/app\/ios\/(vod\/show|(user|vod|topic|type)\/index) url script-response-body https://raw.githubusercontent.com/nzw9314/QuantumultX/master/Script/aimeiju.js
Surge4:
http-response ^https?:\/\/mjapp.anlujia.com\/index\.php\/app\/ios\/(vod\/show|(user|vod|topic|type)\/index) requires-body=1,max-size=0,script-path=https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/File/aimeiju.js
hostname = mjapp.anlujia.com
#启动广告/弹窗
^https?://mjapp.anlujia.com/index.php/app/ios/ads/index url reject-dict
^https?://mjapp.anlujia.com/index.php/app/ios/ver/index_ios$ url reject
^https?://mjapp.anlujia.com/index.php/app/ios/pay/ok$ url reject-dict
*/
var body = $response.body;
var url = $request.url;
const user = "/index.php/app/ios/user/index"; //用户信息
const show = "/index.php/app/ios/vod/show"; //视频播放页面
const banner = "/index.php/app/ios/vod/index";//首页轮播广告
const topic = "/index.php/app/ios/topic/index";//豆瓣热榜中间广告
const type = "/index.php/app/ios/type/index"//综合专区,美剧专区中间广告
if (url.indexOf(user) != -1){
let obj = JSON.parse(body);
obj.data.user.viptime = "2088-08-08 08:08:08";
obj.data.user.cion = "88888";
obj.data.user.vip = "1";
body = JSON.stringify(obj);
}
if (url.indexOf(show) != -1) {
let obj = JSON.parse(body);
obj.data.looktime = -1;
obj.data.vip = "4";
//obj.data.advertising = {};
delete obj.data.advertising;//视频下方轮播,删掉也不能清除广告占位
obj.data.CT_App_Show_Pic1 = "";//联系客服图片
obj.data.CT_App_Show_Url1 = "";//联系客服链接
obj.data.CT_App_Show_Vod1 = "https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=1519044039,3175177225&fm=26&gp=0.jpg";//片头广告,留空的话不会自动播放
obj.data.CT_App_Show_Vod_Time1 = "0";//片头广告显示时间(0秒也短暂显示)
obj.data.CT_App_Show_Vod_Url1 = "";//片头广告链接
obj.data.CT_App_Show_Vod_Type1 = "2";//片头广告显示类型,0一直显示,1暂停播放显示,2显示后自动播放
obj.data.CT_App_Show_Vod_must_Time1 = "0";//片头联系客服图片显示时间,前面改VIP这里自动变0
obj.data.CT_Pic_url1_pause = "";//暂停播放联系客服图片
obj.data.CT_Pic_url1_pause_skip = "";//暂停播放联系客服链接
body = JSON.stringify(obj);
}
if (url.indexOf(banner) != -1) {
let obj = JSON.parse(body);
let data = obj.data
for (var i = data.length - 1 ; i >= 0 ; i--) {
if (data[i].ad == 1) {
data.splice(i, 1)
}
}
body = JSON.stringify(obj);
}
if (url.indexOf(topic) != -1||url.indexOf(type) != -1) {
let obj = JSON.parse(body);
let data = obj.data
for (var i = data.length - 1 ; i >= 0 ; i--) {
if (data[i].ad == 1) {
data[i].ad = 0;
data[i].pic = "";
delete data[i].url
}
}
body = JSON.stringify(obj);
}
$done({body});