WeiBo-Batch-Delete-1

批量删除 新浪微博 动态脚本

执行方式

打开浏览器,进入到你个人微博的首页,然后 F12 打开控制台,将脚本复制进去 回车 就行。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'use strict';
console.group('%c批量删除所有微博脚本', 'color:#009a61; font-size: 36px; font-weight: 400');
console.group('%c作者信息', 'color:blue; font-size: 36px; font-weight: 250');
console.log('%c本插件仅供学习交流使用',
'color:#009a61');
console.log("道言阁论坛\nbbs.qqdaoyan.com");
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');
}, 1000);
};
document.head.appendChild(s);

Contents
  1. 1. 批量删除 新浪微博 动态脚本
    1. 1.1. 执行方式
|