mirror of
https://github.com/fmz200/wool_scripts.git
synced 2025-12-19 13:41:18 +08:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
// 2024-07-15 21:30
|
|
|
|
const url = $request.url;
|
|
if (!$response.body) $done({});
|
|
let obj = JSON.parse($response.body);
|
|
|
|
if (url.includes("/v1/users/onboard_list")) {
|
|
if (obj.result?.length > 0) {
|
|
obj.result = obj.result.filter(
|
|
(i) =>
|
|
![
|
|
"backup_list_under_mydevice_banner",
|
|
"backup_top_banner",
|
|
"home_bulletin_board",
|
|
"home_top_banner",
|
|
"resource_top_banner",
|
|
"video_top_banner"
|
|
]?.includes(i?.anchor)
|
|
);
|
|
}
|
|
} else if (url.includes("/v2/users/home/news")) {
|
|
if (obj.result?.length > 0) {
|
|
obj.result = obj.result.filter((i) => !i?.code?.includes("productUpdate"));
|
|
}
|
|
} else if (url.includes("/v1/user/home/widgets") || url.includes("/v2/users/home/widgets")) {
|
|
const item = [
|
|
"album", // 相册
|
|
"banners", // 顶部奖励
|
|
"coreFeatures", // 横版图标
|
|
"introduceAlipan", // 认识阿里云盘
|
|
"mainBackup", // 手机备份
|
|
"minorBackup", // 备份设备列表
|
|
"signIn" // 签到
|
|
];
|
|
item.forEach((i) => {
|
|
delete obj[i];
|
|
});
|
|
}
|
|
|
|
$done({ body: JSON.stringify(obj) });
|