【微博】自动批量删除微博

批量删除微博

目前为 2019-09-02 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name 【微博】自动批量删除微博
  3. // @namespace http://tuite.fun
  4. // @version 1.1
  5. // @description 批量删除微博
  6. // @author tuite
  7. // @match https://weibo.com/*/profile*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12.  
  13. // Your code here...
  14.  
  15. initDel();
  16. })();
  17. function initDel() {
  18. //1.5秒执行一次删除
  19. self.setInterval(function(){
  20. document.querySelector('a[action-type="feed_list_delete"]').click();
  21. document.querySelector('a[node-type="ok"]').click();
  22. }, 2000);
  23. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址