美文网首页
批量删除微博

批量删除微博

作者: 雁过留声_泪落无痕 | 来源:发表于2022-04-22 16:52 被阅读0次

在旧版的我的主页页面:

'use strict';
console.group('%c批量删除所有微博脚本', 'color:#009a61; font-size: 36px; font-weight: 400');
var ss = document.createElement('script');
ss.setAttribute(
  'src',
  'https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js'
);
ss.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();
    }
 
    // scroll bottom let auto load
    // $('html, body').animate({ scrollTop: $(document).height() }, 'slow');
  }, 1000);
};
document.head.appendChild(ss);

相关文章

网友评论

      本文标题:批量删除微博

      本文链接:https://www.haomeiwen.com/subject/wxunertx.html