- Open Trello Board in Chrome Broewer
- Enable Chrome Developer Tools
- Copy and past in Chrome url on your Trello webpage.
- remove trelling backslash sign
\ - Switch Tab to
Consolein Chrome Developer Tools, and you will see the result
\javascript:var result = $("div .js-list.list-wrapper").map( function() {
let title = $(this).find(".list-header h2").text();
let nCard = $(this).find(".list-cards a").length;
return {[title]: nCard}
}).get();
console.log(result);