deploy: b3c5c4be84680e67c10d79e6fe4f8e047cee9270

This commit is contained in:
SukkaBot
2021-11-29 21:50:49 +00:00
commit f420b8f9e1
41 changed files with 64276 additions and 0 deletions

14
Script/pixiv_premium.js Normal file
View File

@@ -0,0 +1,14 @@
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 })