Export devices list from development Apple account

Development
  1. Open Devices list (At the time of creating this post, it’s https://developer.apple.com/account/ios/device/)
  2. Open Console (Right click to the page > select Inspect)
  3. Paste the script below and run:

 

var ids = ["Device ID"];
var ids = ["Device ID"];
var names = ["Device Name"];
$("td[aria-describedby=grid-table_name]").each(function(){
    names.push($(this).html());
});
$("td[aria-describedby=grid-table_deviceNumber]").each(function(){
    ids.push($(this).html());
});

var output = "";
for (var index = 0; index < ids.length; index++) {
    //output += names[index] + "\t" + ids[index] + "\n";    //original
    output += ids[index] + "\t" + names[index] + "\n";      //post September 2016
}
console.log(output);

And you’ll get something like this:

Device ID Device                                                             Name
A123456789012345678901234567890123456789     NAME1
B123456789012345678901234567890123456789     NAME2

Source: https://stackoverflow.com/a/29426740/1451028