Came across this today..
A free auto like instagram bot done through your browser.
I've been testing it today and it works a charm, just leave it running in the background.
Code:
function getHeartElement() { var knownHeartElementNames = ["coreSpriteHeartOpen", "coreSpriteLikeHeartOpen"]; var i = 0; for (i = 0; i < knownHeartElementNames.length; i++) { var heartElement = document.querySelector('.' + knownHeartElementNames); if (heartElement != undefined) { break; } } return heartElement; }
function doLike() { var likeElement = getHeartElement(); var nextElement = document.querySelector('.coreSpriteRightPaginationArrow'); likeCount++; console.log('Liked ' + likeCount); var nextTime = Math.random() * (14000 - 4000) + 4000; likeElement.click(); setTimeout(function() {nextElement.click();}, 1000); if (likeCount < 250) { setTimeout(doLike, nextTime); } else { console.log('Nice! Time for a break.'); } }
var likeCount = 0; doLike();
A free auto like instagram bot done through your browser.
I've been testing it today and it works a charm, just leave it running in the background.
Code:
function getHeartElement() { var knownHeartElementNames = ["coreSpriteHeartOpen", "coreSpriteLikeHeartOpen"]; var i = 0; for (i = 0; i < knownHeartElementNames.length; i++) { var heartElement = document.querySelector('.' + knownHeartElementNames); if (heartElement != undefined) { break; } } return heartElement; }
function doLike() { var likeElement = getHeartElement(); var nextElement = document.querySelector('.coreSpriteRightPaginationArrow'); likeCount++; console.log('Liked ' + likeCount); var nextTime = Math.random() * (14000 - 4000) + 4000; likeElement.click(); setTimeout(function() {nextElement.click();}, 1000); if (likeCount < 250) { setTimeout(doLike, nextTime); } else { console.log('Nice! Time for a break.'); } }
var likeCount = 0; doLike();