Skip to content

Instantly share code, notes, and snippets.

@adamstrawson
Created September 24, 2019 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamstrawson/e7f85ba42a534b4d428503478733b37e to your computer and use it in GitHub Desktop.
Save adamstrawson/e7f85ba42a534b4d428503478733b37e to your computer and use it in GitHub Desktop.
(function() {
'use strict';
console.log("Starting");
setInterval(function(){
var i;
var button=document.getElementsByClassName("refreshNow");
for (i = 0; i < button.length; i++) {
button[i].click();
console.log("Refreshing: "+i)
}
}, 60000);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment