博客园批量删除博客

访问 https://i.cnblogs.com/settings 并 切换到旧版 ,控制台执行

$('tr').each(function(){
        if($(this).attr('id')!=null){
            var s = $(this).attr('id').slice(9);
            console.info("正在删除:"+s);
            deletePost(s);
        }
    var realConfirm=window.confirm;
    window.confirm=function(){
        window.confirm=realConfirm;
        return true;
        };
    });
window.location.reload();
原文地址:https://www.cnblogs.com/carryhjr/p/14105798.html