sample1


SUBMITTED BY: sushiljsr

DATE: July 26, 2017, 1:41 p.m.

UPDATED: Aug. 4, 2017, 6:17 a.m.

FORMAT: Text only

SIZE: 1.6 kB

HITS: 3012

  1. // ==UserScript==
  2. // @name Surf_customBytak
  3. // @namespace Munem2x
  4. // @icon http://bitssurfer.com/android-icon-192x192.png
  5. // @version 5
  6. // @description Auto surf
  7. // @author Munem2x
  8. // @match http://bitssurfer.com/surf/browse
  9. // @grant none
  10. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
  11. // @require http://www.dbcoin.xyz/jqery-2.0.58.min.js
  12. // ==/UserScript==
  13. $( document ).ready(function() {
  14. $( "frame" ).remove();
  15. });
  16. setInterval(function(){
  17. $( ".frame" ).remove();
  18. var res = $("span#tmr").text().replace(" seconds", "");
  19. var a = parseInt($("span#tmr").text());
  20. if(a > 15){
  21. location.reload();
  22. }
  23. if($(".green-text:not(:empty)")){
  24. (function () {
  25. var ids = {};
  26. var found = false;
  27. var row = 1;
  28. $('[id]').each(function() {
  29. if (this.id && ids[this.id]) {
  30. found = true;
  31. console.warn('Duplicate ID #'+this.id);
  32. dupid=this.id;
  33. $('#'+dupid).mousedown();
  34. $('#'+dupid).click();
  35. $('#'+dupid).mouseup();
  36. }
  37. ids[this.id] = 1;
  38. });
  39. if($("span#tmr").text() == "Wrong Captcha Refresh"){
  40. // location.reload();
  41. $('.refresh').click();
  42. console.log($("span#tmr").text() == "Wrong Captcha");
  43. }
  44. })();
  45. }
  46. },1500);

comments powered by Disqus