Created
March 28, 2018 13:39
-
-
Save konojunya/fc5dad3dfdcf9710168e97c7ab79ae1d to your computer and use it in GitHub Desktop.
Tinderのいいねを自動化するスクリプト(consoleに貼ると動きます)
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
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