Skip to content

Instantly share code, notes, and snippets.

@amblerkr
Forked from jadeallencook/instalike.js
Created December 16, 2020 05:44
Show Gist options
  • Save amblerkr/e85b5c27d3a16a4e6d97b3c5fd9b382c to your computer and use it in GitHub Desktop.
Save amblerkr/e85b5c27d3a16a4e6d97b3c5fd9b382c to your computer and use it in GitHub Desktop.
Script to auto like posts on Instagram.
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