快速批量快速删除微博内容的方法
快速批量快速删除微博内容的方法详细介绍
快速批量内容的方法,可以说是简单粗暴。虽然操作有点重复,但比手工好很多,只适合电脑用户使用。
步骤如下
1、电脑进入自己微博主页->然后右键鼠标->审核元素->点左边下面的
2、第二个英文“Console”->复制粘贴全部代码放入>符号空白处里面
Ja v aScript
// ==UserScript==// @name Weibored.js// @namespace https://vito.sdf.org// @version 0.2.0// @description 删除所有微博// @author Vito Van// @match https://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();www.x6d.com} 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);
3、然后再回车一下就可以了->一次能删一页的内容->大概40~50条左右
如果弹出提示出现错误或系统繁忙又或者停止了,你点微博下一页会继续删或者再放一次代码回车下再次操作,不想继续删了,按F5就刷新页面停止了。
收藏 | 0 点赞 | 0 打赏作者
,