Skip to content

Instantly share code, notes, and snippets.

@markis
Last active November 23, 2016 19:25
Show Gist options
  • Save markis/66deabaf62d68f3545f1 to your computer and use it in GitHub Desktop.
Save markis/66deabaf62d68f3545f1 to your computer and use it in GitHub Desktop.
/* Go to https://www.facebook.com/pokes/ and run the following */
setInterval(() => {
for (let node of document.getElementsByTagName('a')) {
if (node.textContent === "Poke Back") {
node.click();
}
}
}, 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment