Weibored.js

删除所有微博

当前为 2017-04-05 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Weibored.js
  3. // @namespace http://vito.sdf.org
  4. // @version 0.1
  5. // @description 删除所有微博
  6. // @author Vito Van
  7. // @match http://www.weibo.com/p/*
  8. // @grant none
  9. // ==/UserScript==
  10. 'use strict';
  11.  
  12. var s = document.createElement("script");
  13. s.setAttribute("src","https://lib.sinaapp.com/js/jquery/2.0.3/jquery-2.0.3.min.js");
  14. s.onload = function(){
  15. setInterval(function(){
  16. $('a[title="删除此条微博"]')[0].click();
  17. $('a[action-type="ok"]')[0].click();
  18. }, 800);
  19. }
  20. document.head.appendChild(s);

QingJ © 2025

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