Script/QuantumultX/File/bilibiliTab.js

29 lines
927 B
JavaScript
Raw Normal View History

2019-11-07 23:58:48 +08:00
/*
bilibili home page module customization whitelist. by onewayticket255
QX:
^https://app.bilibili.com/x/resource/show/tab\?access_key url script-response-body https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/File/bilibiliTab.js
Surge4
http-response ^https://app.bilibili.com/x/resource/show/tab\?access_key requires-body=1,max-size=0,script-path=https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/File/bilibiliTab.js
Surge & QX MITM = app.bilibili.com
*/
2019-10-12 22:14:50 +08:00
let whitelist=['追番','推荐','直播','热门','影视']
let body = $response.body
body=JSON.parse(body)
body['data']['tab'].forEach((element, index) => {
if(!(whitelist.includes(element['name']))) body['data']['tab'].splice(index,1)
});
2019-10-12 22:35:10 +08:00
body['data']['bottom'].forEach((element, index)=> {
if(element['pos']==4){
body['data']['bottom'].splice(index,1)
}
})
2019-10-12 22:14:50 +08:00
body=JSON.stringify(body)
$done({body})