Go to the course and have any video up. The following code relies on the right sidebar to uncheck all your progress.
You can do this with ctrl+shift+i and then clicking on the console tab
Copy and paste this code in the console
Hit the enter key to run
// Stores all unexpanded section headers, and clicks on the unexpanded section headers to expand them
const sectionEl = document.querySelectorAll("div[aria-expanded='false']");
sectionEl.forEach((section) => section.click());
// Stores all checkboxes on the page, and clicks on any checkboxes on that currently checked
const checkboxes = document.querySelectorAll("input[type='checkbox']");
checkboxes.forEach((checkbox) => {
if(checkbox.checked) {
checkbox.click();
}
})