均需在控制台完成,如果你不知道什么是控制台就算了。

删犇:

$.get('/problem/U197494?_contentOnly',d=>{$("body").html(d.currentData.problem.hint)})

团队管理员删团队帖子:

r=new XMLHttpRequest();r.open('DELETE',
'https://www.luogu.com.cn/api/discuss/delete/ID'
);r.send();

私信自动发送:

async function f(u, s) {
    await fetch("https://www.luogu.com.cn/api/chat/new", {
        headers: [["content-type", "application/json"], ["referer", "https://www.luogu.com.cn/"], ["x-csrf-token", document.querySelector("meta[name=csrf-token]").content], ],
        body: JSON.stringify({
            user: u,
            content: s,
        }),
        method: "POST",
    });
}
(function() {
    var str="文字\n";
    f(uid, str)
}
)();

退团:

fetch("https://www.luogu.com.cn/api/team/exit/TID", {
"headers": {
"accept": "application/json, text/plain, */*",
"x-csrf-token":document.querySelector("meta[name=csrf-token]").content
},
"body": null,
"method": "POST"
});

欢迎投稿