Skip to content

Instantly share code, notes, and snippets.

@Kowiz
Created March 7, 2017 03:26
Show Gist options
  • Save Kowiz/b7ce0d54e117abd54084ad30c7a67f97 to your computer and use it in GitHub Desktop.
Save Kowiz/b7ce0d54e117abd54084ad30c7a67f97 to your computer and use it in GitHub Desktop.
var a = document.getElementsByTagName("a");
for(i=0;i<a.length;i++){
if(a[i].innerHTML == "Reveal Key"){
a[i].click();
}
}
var string="";
var input= document.getElementsByTagName("input");
for(i=1;i<input.length;i=i+2){
if(input[i].type == "text"){
string += input[i].value+",";
}
}
console.log(string);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment