Surge_by_SukkaW/Script/pixiv_premium.js
2021-06-26 15:31:14 +08:00

15 lines
332 B
JavaScript

let body = $response.body;
body = JSON.parse(body);
if (body?.response) {
body.response = body.response || {};
body.response.user = body.response.user || {};
body.response.user.is_premium = true;
}
if (body?.user) {
body.user = body.user || {};
body.user.is_premium = true;
}
body = JSON.stringify(body);
$done({ body })