Find all iframes and show their details. Intended for the console.
document.querySelectorAll('iframe').forEach((iframe)=> { console.log(iframe.id, iframe.className, iframe.src) });