美文网首页
微博快捷清理关注&博文

微博快捷清理关注&博文

作者: 许文同学 | 来源:发表于2020-06-19 15:39 被阅读0次

    浏览器打开我的关注列表页/我的主页,鼠标右键-【检查/审查元素】-【Console/控制台】,粘贴回车即可清理当前页

    // 清理当前页关注列表
    STK.core.io.ajax({
        args: {
            uid: Array.from(document.querySelectorAll('.member_ul > li')).map((li)=>{return li.getAttribute('action-data').match(/uid\=(\d+)/i)[1]}).join(','), 
            refer_flag: "unfollow_all"
        },
        isEncode: true,
        method: "post",
        responseType: "json",
        timeout: 30000,
        url: "/aj/f/unfollow?ajwvr=6&__rnd=" + new Date().getTime(),
        onComplete: (o)=>{alert('处理完成,刷新页面');location.reload();}
    })
    
    // 清理当前页微博列表
    document.querySelectorAll('.WB_feed_type').forEach((div)=>{
        let id = div.getAttribute('mid');
        STK.core.io.ajax({
            args: {mid: id},
            method: "post",
            url: "/aj/mblog/del?ajwvr=6",
            onSuccess: ()=>{console.log('del: ' + id);}
        });
        
    }); alert('处理完成,刷新页面');location.reload();
    

    相关文章

      网友评论

          本文标题:微博快捷清理关注&博文

          本文链接:https://www.haomeiwen.com/subject/dzovxktx.html