Greasy Fork is available in English.
优雅地解锁ProcessOn
< Feedback on ProcessOn-VIP
因为还有创建文件限制,我在代码里加了如下但还是存在9个文件的限制if (request.url.endsWith('/user/files')) { request.response = res => { const json = JSON.parse(res.responseText); // 修改文件最大数量json.data.maxFiles = 999; // 将最大文件数设置为999json.data.currentFiles = json.data.maxFiles; // 设置当前文件数为最大文件数 res.responseText = JSON.stringify(json); };}
这个应该是服务器验证,应该无法绕过
تسجيل الدخول إلى مرحلة ما بعد الرد.
因为还有创建文件限制,我在代码里加了如下
但还是存在9个文件的限制
if (request.url.endsWith('/user/files')) {
request.response = res => {
const json = JSON.parse(res.responseText);
// 修改文件最大数量
json.data.maxFiles = 999; // 将最大文件数设置为999
json.data.currentFiles = json.data.maxFiles; // 设置当前文件数为最大文件数
res.responseText = JSON.stringify(json);
};
}