2019.4.14 ------ 新浪微博批量刪除微博腳本


 

 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刷新,但刪掉的微博是不能還原

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM