Skip to content

Instantly share code, notes, and snippets.

@sayhicoelho
Created August 22, 2017 23:36
Show Gist options
  • Save sayhicoelho/5a703b42aaa5c1e2f96c2441f863e4ca to your computer and use it in GitHub Desktop.
Save sayhicoelho/5a703b42aaa5c1e2f96c2441f863e4ca to your computer and use it in GitHub Desktop.
Facebook: Poke your friends like a boss!
setInterval(function () {
var poke_buttons = document.querySelectorAll('._4-u2._xct._4-u8 ._42ft._4jy0._4jy3._4jy1.selected._51sy');
for (var i = 0; i < poke_buttons.length; i++) {
poke_buttons[i].click();
}
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment