码迷,mamicode.com
首页 > 其他好文 > 详细

2019.4.14 ------ 新浪微博批量删除微博脚本

时间:2019-04-14 14:12:40      阅读:381      评论:0      收藏:0      [点我收藏+]

标签:删除   web   func   ogr   lse   data   新浪   http   tom   

 

 1 ‘use strict‘;
 2 var s = document.createElement(‘script‘);
 3 s.setAttribute(
 4 ‘src‘,
 5 ‘https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js‘
 6 );
 7 s.onload = function() {
 8 setInterval(function() {
 9 if (!$(‘a[action-type="feed_list_delete"]‘)) {
10 $(‘a.next‘).click();
11 } else {
12 $(‘a[action-type="feed_list_delete"]‘)[0].click();
13 $(‘a[action-type="ok"]‘)[0].click();
14 }
15 // scroll bottom let auto load
16 $(‘html, body‘).animate({ scrollTop: $(document).height() }, ‘slow‘);
17 }, 800);
18 };
19 document.head.appendChild(s);

1. 进入自己的微博主页(网页端)

2. 按F12键(或者右键审查元素),将代码复制在 [ console ]目录 ,按回车键确定即可

 

温馨提示:

a. 不能删除指定微博,但可以删除当前页面的微博

 
技术图片
跳转到某页,把代码复制在当前页面,即可删除本页微博

b. 一次只能删除一页的微博,大概30条

c. 如果出现错误,或者系统繁忙,就把代码在[console ]目录复制一遍

d. 后悔了,想停止删除,就按F5刷新,但删掉的微博是不能还原

 

2019.4.14 ------ 新浪微博批量删除微博脚本

标签:删除   web   func   ogr   lse   data   新浪   http   tom   

原文地址:https://www.cnblogs.com/spstart/p/10704780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!