Skip to content

Instantly share code, notes, and snippets.

@M-ZubairAhmed
Created November 8, 2023 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save M-ZubairAhmed/76562c14d6aefa52e57461a5a8bea336 to your computer and use it in GitHub Desktop.
Save M-ZubairAhmed/76562c14d6aefa52e57461a5a8bea336 to your computer and use it in GitHub Desktop.
Uncheck all viewed files in Github
const allViewedCheckbox = document.getElementsByClassName('mr-1 js-reviewed-checkbox')
for(viewedCheckbox of allViewedCheckbox) {
if (viewedCheckbox.checked) {
viewedCheckbox.click()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment