Created
July 9, 2013 08:33
-
-
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.
This file contains 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
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