Last active
May 22, 2021 12:36
-
-
Save kboy-silvergym/d3038ef730e4d83a0be82df5bf667e18 to your computer and use it in GitHub Desktop.
This file contains 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( | |
function () { | |
const elem = document.getElementsByClassName("recsGamepad__button"); | |
elem[3].click(); | |
}, 1000) |
下記コードで動作確認済み(2020/08/22)
setInterval(function () {
const elem = document.querySelector('[aria-label="いいね!"]');
elem.click();
}, 1000);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
変更に対応したやつ
https://gist.github.com/lunain84/21d8d5f685a3f3adc2718aeeb81e57d1