iOS 批量导出苹果后台设备UUID

工具:

1.Google Chrome 浏览器
2.需要导出设备的苹果账号
3.需要导入设备的苹果账号

步骤

1.进入需要导出设备的列表页

2.右键网页,点击检查

3.点击Sources,新建一个文件

4.写入代码

  1. var list = document.querySelectorAll(“.infinite-scroll-component .row”);
  2. var cout = 0;
  3. list.forEach(row=>{
  4. var children = row.children;
  5. var uuid = children[1].innerText;
  6. // var name = children[0].innerText; //名称
  7. // var type = children[2].innerText; //类型
  8. console.log(uuid + ‘ ‘ + ‘Name’+cout + ‘ ‘ + ‘ios’);
  9. cout++;
  10. }
  11. );

image.png

5.点击运行

 

6.在log中获取需要的数据

 

7.复制到文件中即可,然后按照苹果的要求导入即可。