Skip to content

Instantly share code, notes, and snippets.

@33Fraise33
Last active June 23, 2017 13:50
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 33Fraise33/a53171c791608f8f22bfcf7af4a55b20 to your computer and use it in GitHub Desktop.
Save 33Fraise33/a53171c791608f8f22bfcf7af4a55b20 to your computer and use it in GitHub Desktop.
Get Game Sever Login Tokens from Steam
const gameservers = document.getElementsByTagName('tbody');
const json = [];
for(var i = 0 ; i < gameservers.length; i++) {
json.push(gameservers[i].children[0].children[1].innerHTML);
}
JSON.stringify(json);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment