|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
这个方法可以说简单粗暴,虽说操作有点小重复,
但比手动好多了,只适用于电脑用户。
步骤如下:
1、电脑进入自己微博主页->然后右键鼠标->审核元素->点下面的
2、第二个英文“Console”->复制粘贴全部代码放入>符号空白处
3、回车一下就可以了->一次能删一页的内容->大概40~50条左右
PS:如果弹出提示出现错误或系统繁忙又或者停止了,你点微博
下一页会继续删或者再放一次代码回车下再次操作,
不想继续删了,按F5就刷新页面停止了。
- // ==UserScript==
- // @name Weibored.js
- // @namespace [url=https://vito.sdf.org]https://vito.sdf.org[/url]
- // @version 0.2.0
- // @description 删除所有微博
- // @author Vito Van
- // @match [url=https://weibo.com/p/]https://weibo.com/p/[/url]*
- // @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();[url=http://www.x6d.com]www.x6d.com[/url]
- } 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);
复制代码 |
|