Skip to content

Instantly share code, notes, and snippets.

@geekf
Last active August 29, 2015 14:07
Show Gist options
  • Save geekf/68855f4bb01de1cf52dc to your computer and use it in GitHub Desktop.
Save geekf/68855f4bb01de1cf52dc to your computer and use it in GitHub Desktop.
Poke back auto-bot
/* Pokes back every 2 minutes. Run in console on https://www.facebook.com/pokes/ */
window.setInterval(function(){var x=document.evaluate('//*[translate(text(),"ABCDEFGHIJKLMNOPQRSTUVWXYZ","abcdefghijklmnopqrstuvwxyz")="poke back"]',document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE),i=0;for(;i<x.snapshotLength;i++)x.snapshotItem(i).click()},120000);
@saranya-vatti
Copy link

Yay! :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment