Skip to content

Instantly share code, notes, and snippets.

@kboy-silvergym
Last active May 22, 2021 12:36
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save kboy-silvergym/d3038ef730e4d83a0be82df5bf667e18 to your computer and use it in GitHub Desktop.
Save kboy-silvergym/d3038ef730e4d83a0be82df5bf667e18 to your computer and use it in GitHub Desktop.
setInterval(
function () {
const elem = document.getElementsByClassName("recsGamepad__button");
elem[3].click();
}, 1000)
@kboy-silvergym
Copy link
Author

kboy-silvergym commented Aug 22, 2020

@kboy-silvergym
Copy link
Author

kboy-silvergym commented Aug 22, 2020

下記コードで動作確認済み(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