Skip to content

Instantly share code, notes, and snippets.

@devmeireles
Created August 3, 2016 17:57
Show Gist options
  • Save devmeireles/97a40bbbb4386474077cd96c104ba30f to your computer and use it in GitHub Desktop.
Save devmeireles/97a40bbbb4386474077cd96c104ba30f to your computer and use it in GitHub Desktop.
//Função para unfollow no Instagram
//Criado por Mateus feat Gabriel modafoquers!
setInterval(Unfollow, 1000);
function Unfollow() {
var followingBox = document.querySelectorAll("a[href='/thefuckskull/following/']");
followingBox[0].click();
setTimeout(function(){
var following = document.querySelectorAll("._aj7mu._r4e4p._95tat._o0442");
for (var i = 0; i < following.length; i++){
following[i].click();
}
var close = document.querySelectorAll("._3eajp");
close[0].click();
},5000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment