Skip to content

Instantly share code, notes, and snippets.

@xadhix-zz
Created August 13, 2014 11:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save xadhix-zz/1d6f76c7564a25e77a7b to your computer and use it in GitHub Desktop.
Save xadhix-zz/1d6f76c7564a25e77a7b to your computer and use it in GitHub Desktop.
Facebook AutoPoke
window.setInterval(
function(){
var p = document.querySelectorAll("a");
for(var i=0;i<p.length;i++){
if(p[i].innerHTML.indexOf("Poke Back") >=0){
p[i].click();
}
}
},
"3000");
"";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment