Skip to content

Instantly share code, notes, and snippets.

@georgenaranjo96
Created August 29, 2020 23:15
Show Gist options
  • Save georgenaranjo96/5583370c2a86b318a1fa83fcade8203c to your computer and use it in GitHub Desktop.
Save georgenaranjo96/5583370c2a86b318a1fa83fcade8203c to your computer and use it in GitHub Desktop.
let likes = 0;
setInterval(() => {
const heart = document.querySelector('svg[aria-label="Like"]').parentNode;
const arrow = document.querySelector('a.coreSpriteRightPaginationArrow');
if (heart) {
heart.click()
likes++;
console.log(`You've liked ${likes} post(s)`);
}
arrow.click();
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment