怎么免费批量删除微博
bug吧
全部回复
仅看楼主
level 14
必备条件 1:电脑。 2:Chrome内核浏览器,如谷歌、火狐等。 操作流程 1.打开浏览器 2.登录微博帐号 3.打开浏览器控制台(可按F12快捷方式打开) 4.选择Console窗口 5.运行下列代码
// ==UserScript==
// @name Weibored.js
// @namespace http://vito.sdf.org
// @贴吧用户_00JG4KJ615 0.2.0
// @Description 删除所有微博
// @Author Vito Van
// @match http://weibo.com/p/*
// @grant none
// ==/UserScript==
'use strict';
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);
6.重复操作上述步骤即可,不间断重复操作每小时可删2000条左右。 优点:完全免费。 缺点:需要一定的计算机使用功底、全程手动配合操作枯燥乏味、速度较慢、不能选择性按需删除、重复操作后代码有崩溃的可能性。 以上是免费批量删除微博的方法,欢迎实践。 如果嫌麻烦、不会操作,可以私信博主 @极速批量删除微博 委托代理删除清理。
2020年03月16日 15点03分 1
level 14
油猴脚本不是一大把嘛,都是有界面操作按钮的
2020年03月16日 16点03分 2
level 3
有没有获取所有点赞数最高的微博评论的
2020年03月17日 06点03分 3
吧务
level 14

2020年03月31日 03点03分 27
吧务
level 16
给力
2020年04月05日 00点04分 28
level 12
有空试试
2020年04月05日 13点04分 29
level 12
试了试360就可以
2020年04月09日 07点04分 30
level 13
这也能精,我傻了
2020年04月09日 15点04分 31
level 1
怎么搞没看懂
2020年04月16日 07点04分 32
level 1
代删吗?
2020年04月22日 15点04分 34
level 9
2020年04月23日 18点04分 35
level 1
内存崩溃了。。。我还是老老实实用自己写的工具弄吧。更稳定些。
2025年04月01日 10点04分 37
level 1
显示这个:VM34:1 Uncaught SyntaxError: Identifier 's' has already been declared
at <anonymous>:1:1
2025年12月18日 02点12分 38
1