在旧版的我的主页页面:
'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);









网友评论