Advertisement
Guest User

Untitled

a guest
Mar 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.62 KB | None | 0 0
  1. javascript: (function(e, s) {
  2. e.src = s;
  3.     e.onload = function() {
  4.         jQuery.noConflict();
  5.         console.log('jQuery injected');
  6.     };
  7.     document.head.appendChild(e);
  8. })(document.createElement('script'), '//code.jquery.com/jquery-latest.min.js')
  9. var counter = 0;
  10. function clickTimer(){setTimeout(function(){
  11.  
  12.     if(!jQuery(".recsGamepad").hasClass("recsGamepad--disabled")){
  13.         jQuery("body").find("[aria-label='Like']")[0].click()
  14.         console.log("profile clicked");
  15.  
  16.     }else{
  17.         console.log("No profiles");
  18.     }
  19.     clickTimer();
  20. }, 100)}
  21. setTimeout(function(){ clickTimer(); }, 1000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement