Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
X-Y-TT authored Jun 23, 2020
1 parent c388cdf commit 5c17d7c
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions xjsp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
香蕉视频完美🔓
App下载地址:http://t.cn/AiF4NGUo
电报频道:https://t.me/ThorHCC
电报群组:https://t.me/f4thorHCC
QQ资源群:189519867
QQ吹牛群:316864309
资源发布:https://t.cn/A6ARmXZ0
圈X
把第1️⃣段规则复制到rewrite local下面,然后1.0.10以上版本远程挂载本JS文件
[rewrite_local]
#1️⃣复制到本地
https:\/\/.*\.(lagoapps|guoguoapps|pipiapps).com url request-header Cookie:.+ request-header Cookie: xxx_api_auth=3666393732366333343132363833646163623438313064646532653661393135
#2️⃣远程挂载
https?:\/\/.*\.(lagoapps|guoguoapps|pipiapps)\.com\/(ucp\/index|getGlobalData|.+\/reqplay\/|\/comment\/listing\/) url script-response-body https://raw.githubusercontent.com/JungegeCN/JGG/master/xjsp.js
[MITM]
hostname = *.guoguoapps.com, *.pipiapps.com, *.lagoapps.com
*/

var obj = JSON.parse($response.body);
if ($request.url.indexOf("/ucp/index") != -1){
obj.data.uinfo.down_daily_remainders = "5201314";
obj.data.uinfo.play_daily_remainders = "5201314";
obj.data.uinfo.minivod_play_daily_remainders = "5201314";
obj.data.uinfo.minivod_down_daily_remainders = "5201314";
obj.data.user.nickname = "JungegeCN";
obj.data.user.avatar_url = "https://i.loli.net/2019/10/24/eCJuqz75WrL6ihQ.jpg";
obj.data.user.goldcoin = "52013";
obj.data.user.dueday = "JungegeCN";
}
if ($request.url.indexOf("/getGlobalData") != -1){
delete obj.data.adgroups;
delete obj.data.iOS_adgroups;
}

$done({body: JSON.stringify(obj)});

0 comments on commit 5c17d7c

Please sign in to comment.