Skip to content

Instantly share code, notes, and snippets.

@ziyahan
Created November 3, 2024 09:13
Show Gist options
  • Save ziyahan/88271073cc2a800f7adff3041c358259 to your computer and use it in GitHub Desktop.
Save ziyahan/88271073cc2a800f7adff3041c358259 to your computer and use it in GitHub Desktop.
Udemy course progress reset (No need for extension)
const checkboxes = document.querySelectorAll("input[type='checkbox'][data-purpose='progress-toggle-button']");
for (let i = 0; i < checkboxes.length; i++) {
checkboxes[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment