Skip to content

Instantly share code, notes, and snippets.

@btmills
Created July 9, 2013 08:33
Show Gist options
  • Save btmills/5955674 to your computer and use it in GitHub Desktop.
Save btmills/5955674 to your computer and use it in GitHub Desktop.
Run this while on https://www.facebook.com/pokes to beat an opponent into submission.
var dashboard = document.getElementsByClassName('pokesDashboard')[0];
window.setInterval(function () {
var pokes = dashboard.getElementsByClassName('uiIconText');
for (var i = 0; i < pokes.length; i++)
pokes[i].click();
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment