批量删除个人新浪微博的js代码

·
编程 新浪微博 September 10, 2020
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);
  • 小工具类,TCP消息解析器
  • 新浪微博批量删除个人关注的js代码
取消回复

说点什么?

© 2021 Self. Using Typecho & Moricolor.