-
-
Save vigsank/b193f4cbd93cb3434412 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
window.setInterval( | |
function(){ | |
var p = document.querySelectorAll("a"); | |
for(var i=0;i<p.length;i++){ | |
if(p[i].innerHTML.indexOf("Poke Back") >=0){ | |
p[i].click(); | |
} | |
} | |
}, | |
"3000"); | |
""; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment