一段代码轻松解决批量删除微博,打开微博登录到个人首页,按F12进入console,粘贴代码按下回车键即可。
var s = document.createElement('script');s.setAttribute(
'src',
'https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js'
);
s.onload = function() {
setInterval(function() {
if (!$('a[action-type="feed_list_delete"]')) {
$('a.next').click();
} else {
$('a[action-type="feed_list_delete"]')[0].click();
$('a[action-type="ok"]')[0].click();
}
$('html, body').animate({ scrollTop: $(document).height() }, 'slow');
}, 500);
};
document.head.appendChild(s);
文章评论