Last active
November 23, 2016 19:25
-
-
Save markis/66deabaf62d68f3545f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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