Skip to content

Instantly share code, notes, and snippets.

View fabiodaneze's full-sized avatar

Fabio Daneze fabiodaneze

View GitHub Profile
@fabiodaneze
fabiodaneze / extract-testflight.js
Created March 4, 2016 16:20 — forked from creaoy/extract-testflight.js
Extract TestFlight user email addresses from iTunes Connect
//Make sure you scroll down to get all data loaded
var text = '';
$('.col-email').each(function(index,el) {
if (index == 0) {
text = 'Email;First Name;Last Name;Status;Last Update\n';
}
else {
//Email
text = text + $.trim($(el).find("a").text()) + ';';
//First Name