新浪微博文章批量删除


登入微博
进入我的专业,然后打开调试工具
输入:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);

安回车即可