全自动 百度 贴吧 顶贴

全自动百度贴吧顶贴/回帖/引流

  1. // ==UserScript==
  2. // @name 全自动 百度 贴吧 顶贴
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.31
  5. // @description 全自动百度贴吧顶贴/回帖/引流
  6. // @author 公众号:404Lab
  7. // @match http://tieba.baidu.com/p/*
  8. // @match https://tieba.baidu.com/p/*
  9. // @grant none
  10. // ==/UserScript==
  11. var j = 0 ;
  12. var word = ['滴滴滴','上车了','不错不错','上车滴滴滴','还算可以了这波','很不错!!!','dddd','顶一哈','好','楼上你为何这么吊请大声告诉我这是几楼','本吊夜观天象,楼下肯定有帅哥美女出现⊙.⊙','不要崇拜哥,哥只是贴吧里的一阵风','吊炸了!','哈哈哈哈哈哈不错~`(*∩_∩*)′','好顶支持~~'];
  13. function setReplyContent(){
  14. if(word.length <= j){
  15. j = 0;
  16. }
  17. var w = word[j];
  18. j++;
  19. var html = '<p>'+w+'</p>';
  20. $("#ueditor_replace").html(html);
  21. }
  22. function submitReply(){
  23. $(".poster_submit").click();
  24. }
  25. setInterval(function(){
  26. setReplyContent();
  27. submitReply();
  28. },20000);//这里设置顶帖间隔时间;单位为毫秒;默认20秒;
  29.  
  30. (function() {
  31. 'use strict';
  32.  
  33. // Your code here...
  34. })();