Last active
May 8, 2021 21:15
-
-
Save geofflangenderfer/4783da4c0d8c65590e711bf6bae933de to your computer and use it in GitHub Desktop.
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
const sleep = (milliseconds) => { | |
return new Promise(resolve => setTimeout(resolve, milliseconds)) | |
} | |
// this didn't work with const?? | |
var button = document.querySelector("#t1197069193 > div > div.App__body.H\\(100\\%\\).Pos\\(r\\).Z\\(0\\) > div > main > div.H\\(100\\%\\) > div > div > div.recsCardboard.W\\(100\\%\\).Mt\\(a\\).H\\(100\\%\\)--s.Px\\(4px\\)--s.Pos\\(r\\) > div.recsCardboard__cardsContainer.H\\(100\\%\\).Pos\\(r\\).Z\\(1\\) > div.Pos\\(r\\).Py\\(16px\\).Py\\(12px\\)--s.Px\\(4px\\).Px\\(8px\\)--ml.D\\(f\\).Jc\\(sb\\).Ai\\(c\\).Maw\\(375px\\)--m.Mx\\(a\\).Pe\\(n\\).Mt\\(-1px\\) > div:nth-child(4) > button") | |
//var button = [...document.querySelectorAll('button')][10] | |
const like = async () => sleep(500).then(button.click()); | |
for (let i=0;i<99;i++) {await like();} | |
hi buddy, what does this script do?
tinder auto liker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
copy+paste into the console