Skip to content

Instantly share code, notes, and snippets.

View mwmw7's full-sized avatar
💭
Happy

tervancovan mwmw7

💭
Happy
View GitHub Profile
@mwmw7
mwmw7 / instalike.js
Created August 18, 2021 06:22 — forked from jadeallencook/instalike.js
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();