Tinder Auto-Like

like in anynone each 3 seconds

  1. // ==UserScript==
  2. // @name Tinder Auto-Like
  3. // @version 1
  4. // @grant none
  5. // @match *://tinder.com/*
  6. // @description like in anynone each 3 seconds
  7. // @namespace https://greasyfork.org/
  8. // ==/UserScript==
  9. function auto (x, y) { setInterval(function(){
  10. //x = 940;
  11. //y = 752;
  12. var ev = document.createEvent("MouseEvent");
  13. var el = document.elementFromPoint(x,y);
  14. ev.initMouseEvent(
  15. "click",
  16. true /* bubble */, true /* cancelable */,
  17. window, null,
  18. x, y, 0, 0, /* coordinates */
  19. false, false, false, false, /* modifier keys */
  20. 0 /*left*/, null
  21. );
  22. el.dispatchEvent(ev);
  23. },3000);
  24.  
  25. }
  26.  
  27. auto(886, 548);