js

批量删除微博的代码

批量删除微博的代码

Posted by xuepro on June 21, 2020

1、F12进入浏览器开发者模式;

2、在控制台(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(){
for(var i=0;i<100;i++){
setTimeout(function(){
$('a[action-type="fl_menu"]')[0].click();
$('a[title="删除此条微博"]')[0].click();
$('a[action-type="ok"]')[0].click();
},1000*i);
}
}
document.head.appendChild(s);

或下述代码:

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);

可以删除更多的帖子,出现一些弹出窗口和错误也不要紧。

3、回车,执行 ————————————————


支付宝打赏 微信打赏

您的打赏是对我最大的鼓励!