js to list row items in console

PHOTO EMBED

Tue Feb 07 2023 11:10:50 GMT+0000 (Coordinated Universal Time)

Saved by @nyzl #javascript

document.querySelectorAll(".row").forEach(
function(node) {
var text = node.innerText.replaceAll(/\n/g, ", ");
var link = node.innerHTML.match(/reporting\/[0-9a-zA-Z\-_]*/)|| "";
console.log(text + link[0] );
}
);
content_copyCOPY