Skip to content

Instantly share code, notes, and snippets.

@worr
Created July 11, 2014 06:27
Show Gist options
  • Save worr/c89cae35c88f2dc74d27 to your computer and use it in GitHub Desktop.
Save worr/c89cae35c88f2dc74d27 to your computer and use it in GitHub Desktop.
NodeList.prototype.forEach = Array.prototype.forEach; HTMLCollection.prototype.forEach = Array.prototype.forEach;
var pokeAll = function() {
document.querySelectorAll("div a[class='_42ft _4jy0 _4jy3 _4jy1 selected']:not([data-gt])").forEach(
function(item) {
item.click();
});
};
setInterval(pokeAll, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment