martes, 12 de mayo de 2020

Obtenir els links d'una Web amb la console de chrome

https://www.mattjennings.net/extracting-urls-web-page-chrome-developer-tools
  1. Array.prototype.slice.call(document.querySelectorAll('a'), 0).forEach((a,i)=>console.log(`#${i+1} - ${a.innerText} -- ${a.href}`));

No hay comentarios:

Publicar un comentario