Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         New Userscript
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://tinder.com/
  8. // @grant        none
  9. // @require      http://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.  
  15.     setInterval(function() {
  16.  
  17.         console.log( jQuery('.recsGamepad').hasClass('recsGamepad--disabled') );
  18.  
  19.         if( jQuery('.recsGamepad').hasClass('recsGamepad--disabled') ) {
  20.  
  21.             return;
  22.  
  23.         }
  24.  
  25.         jQuery('.recsGamepad button').eq(3).click();
  26.  
  27.     },2000);
  28.  
  29. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement