Skip to content

Instantly share code, notes, and snippets.

@renoirtech
Created August 2, 2016 22:50
Show Gist options
  • Save renoirtech/5308843b0c9ef8918679b04d5a2122c5 to your computer and use it in GitHub Desktop.
Save renoirtech/5308843b0c9ef8918679b04d5a2122c5 to your computer and use it in GitHub Desktop.
Captura todos os nomes de jogos da sua Steam e transforma em texto puro.
// DECLARAÇÃO DE VARIÁVEIS
var tabela = document.getElementById('table-apps');
var $a = tabela.getElementsByTagName('A');
var body = document.getElementsByTagName('BODY');
body = body[0];
//FUNÇÕES
function criaTexto(texto){
// CRIAÇÃO DE ELEMENTOS DOM
quebraLinha = document.createElement('br');
texto = document.createTextNode(texto);
// INSERÇÃO DE ELEMENTOS DOM
body.appendChild(texto);
body.appendChild(quebraLinha);
}
// CAPTURA DE TITULO DOS JOGOS
for(var i = 0; i<$a.length; i++){
if(i% 2) {
texto = $a[i].text;
criaTexto(texto);
}
}
alert("Sucesso");
//FIM DO CÓDIGO.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment