昨天晚上找回了10年注册的微博,现在瞅瞅,转发过很多傻吊的微博,关注了一堆营销号,不忍直视,动手删吧!开玩笑的,怎么可能手动!
查看自己的所有微博,F12----->console,负责下面代码回车
原文:https://blog.csdn.net/S1monyoung/article/details/79065044
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(); } // scroll bottom let auto load $('html, body').animate({ scrollTop: $(document).height() }, 'slow'); }, 800); }; document.head.appendChild(s);
批量取消关注
// 批量取消关注,打开新浪微博关注页面。 // 打开chrome控制台,执行下方js $('[action-type="batselect"]').click(); var nodelist = $('.member_ul').childNodes; for (var i = 0; i< nodelist.length; i++) { if (nodelist[i].nodeName != 'LI') { continue; } nodelist[i].click(); }
$('[node-type="cancelFollowBtn"]').click();