Skip to content

Instantly share code, notes, and snippets.

@vigsank
Forked from xadhix-zz/facebookautopoke
Last active August 29, 2015 14:06
Show Gist options
  • Save vigsank/b193f4cbd93cb3434412 to your computer and use it in GitHub Desktop.
Save vigsank/b193f4cbd93cb3434412 to your computer and use it in GitHub Desktop.
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