Skip to content

Instantly share code, notes, and snippets.

@konojunya
Created March 28, 2018 13:39
Show Gist options
  • Save konojunya/fc5dad3dfdcf9710168e97c7ab79ae1d to your computer and use it in GitHub Desktop.
Save konojunya/fc5dad3dfdcf9710168e97c7ab79ae1d to your computer and use it in GitHub Desktop.
Tinderのいいねを自動化するスクリプト(consoleに貼ると動きます)
var like_button = document.querySelector(".recsGamepad__button--like ");
function like() {
like_button.click()
setTimeout(like, 1000)
}
like()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment