Skip to content

Instantly share code, notes, and snippets.

@raulfmiranda
Forked from jadeallencook/instalike.js
Created February 19, 2020 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raulfmiranda/11228616bd87f9713753d109a183b76e to your computer and use it in GitHub Desktop.
Save raulfmiranda/11228616bd87f9713753d109a183b76e to your computer and use it in GitHub Desktop.
Scripts that auto likes posts on instagram via tag.
let likesGiven = 0;
setInterval(() => {
let heart = document.getElementsByClassName('glyphsSpriteHeart__outline__24__grey_9'),
arrow = document.querySelector('.coreSpriteRightPaginationArrow');
if (heart[1]) {
heart = heart[1].parentElement;
likesGiven++, heart.click();
}
arrow.click();
console.log(`You've liked ${likesGiven} post(s)!`);
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment