Défi : Comment constituer une liste de +400 prospects ?

Comment faire 100 000€ en 2 semaines

Le code à copier dans votre console:


var elements = document.querySelectorAll('a.update-components-poll-vote__profile-link');
var urls = Array.from(elements).map(a => a.href).join('\n');
// Create a Blob with the URLs
var blob = new Blob([urls], { type: 'text/csv;charset=utf-8;' });
// Create an URL for the Blob
var url = URL.createObjectURL(blob);
// Create a link for the URL and trigger a click on it to start the download
var link = document.createElement('a');
link.href = url;
link.download = "urls.csv";
link.click();

© 2024 Growth Lab. Tous droits réservés. | CGV