Skip to content

Instantly share code, notes, and snippets.

@ronaiza-cardoso
ronaiza-cardoso / unfollow-instagram.js
Last active October 18, 2018 12:45
go to your instagram page > open your fallow list with > open inspect > toggle device tollbar > paste this on console > run and see the magic happens
// I've got inspired by this code: https://github.com/pbradaric/instagram-unfollow-script
var ufwTotalCounter = 0;
var ufwCounter = 0;
var maxUfwsPerBatch = 13;
var fwButtonSelector = document.getElementsByClassName('_5f5mN')
var length = fwButtonSelector.length - 1 === -1 ? 0 : fwButtonSelector.length - 1
var delayBetweenUfwClicks = 4000;
var delayRandomness = 4000;
var delayBetweenUfwBatches = 600000;