Create a bookmarklet with this as the URL:
javascript:(function(){const progress=Array.from(document.querySelectorAll('p[class^="progressNumbers"]')).map(e=>e.innerText).map(e=>{let o=e.match(/(\d+) of (\d+) complete/);return{done:parseInt(o[1]),total:parseInt(o[2])}}),done=progress.map(e=>e.done).reduce((e,o)=>e+o),total=progress.map(e=>e.total).reduce((e,o)=>e+o);alert(`\nProgress Report:\nPercent Complete- ${(done/total*100).toFixed(2)}%\n\nSections done- ${done}\nTotal sections- ${total}\n`);})()
Next, go to a page like this, and click on the bookmarklet to display your progress report.