2019.4.14 ------ 新浪微博批量删除微博脚本

 1 'use strict';
 2 var s = document.createElement('script');
 3 s.setAttribute(
 4 'src',
 5 'https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js'
 6 );
 7 s.onload = function() {
 8 setInterval(function() {
 9 if (!$('a[action-type="feed_list_delete"]')) {
10 $('a.next').click();
11 } else {
12 $('a[action-type="feed_list_delete"]')[0].click();
13 $('a[action-type="ok"]')[0].click();
14 }
15 // scroll bottom let auto load
16 $('html, body').animate({ scrollTop: $(document).height() }, 'slow');
17 }, 800);
18 };
19 document.head.appendChild(s);

1. 进入自己的微博主页(网页端)

2. 按F12键(或者右键审查元素),将代码复制在 [ console ]目录 ,按回车键确定即可

温馨提示:

a. 不能删除指定微博,但可以删除当前页面的微博

 
跳转到某页,把代码复制在当前页面,即可删除本页微博

b. 一次只能删除一页的微博,大概30条

c. 如果出现错误,或者系统繁忙,就把代码在[console ]目录复制一遍

d. 后悔了,想停止删除,就按F5刷新,但删掉的微博是不能还原

猜你喜欢

转载自www.cnblogs.com/spstart/p/10704780.html