Occasionally there’s a need to identify a certificate in an Apple Developer Team Account. Certs created in the developer portal end up all having the same name and the portal doesn’t expose the actual cert ids so they all look identical when you’re creating a provisioning profile. The following bookmarklet will show the certificate id in the selector so you can choose the right one the first time.

javascript:Array.from(document.querySelectorAll('[name=\'certificateIds\']'))
    .map(radio => radio.parentNode.appendChild(document.createTextNode(radio.attributes['value'].value)))

Identify Distro Certs