浏览器打开我的关注列表页/我的主页,鼠标右键-【检查/审查元素】-【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();
网友评论