【转】教你一招,简单快速批量删除微博内容

冬月初五 2020-3-13 4589

用代码删,方法简单粗暴。 看见代码不用慌,下面写好了,若你需要,直接粘贴使用。


步骤1:进入自己的微博



步骤2:按你键盘上第一排的 F12 ,或者点鼠标右键有个审查元素

步骤3: 点击我上图标的①,Console


步骤4,在上图②的位置复制我下面的代码,粘贴进去,按你键盘的enter 。就ok啦。

代码如下:

// ==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();

} 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);


转自:

作者:@一粒秀米  

地址:https://zhuanlan.zhihu.com/p/102650163



最新回复 (1)
    • 记录·WiKi
      3
        立即登录 立即注册 
返回
文章系网友原创或转载,目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵权行为,请联系我们admin(a)jilu.wiki,我们会及时删除。