Last active
October 30, 2019 22:43
-
-
Save OR13/d17ecd21c6525bce3f3b2bb3558f59a3 to your computer and use it in GitHub Desktop.
Like all the people on bumble
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setInterval(()=>{ | |
| if (Math.random() > .8){ | |
| this.document.getElementsByClassName('encounters-action encounters-action--dislike tooltip-activator')[0].click(); | |
| } else { | |
| this.document.getElementsByClassName('encounters-action encounters-action--like tooltip-activator')[0].click(); | |
| } | |
| }, 10 * Math.random() * 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment