Skip to content

Instantly share code, notes, and snippets.

@C0ZEN
Created March 28, 2022 14:22
Show Gist options
  • Save C0ZEN/a40a124c9a3ab3f9f7e1e3875258095e to your computer and use it in GitHub Desktop.
Save C0ZEN/a40a124c9a3ab3f9f7e1e3875258095e to your computer and use it in GitHub Desktop.
Uncheck all "Viewed" files when code reviewing on GitHub
document.getElementsByName("viewed").forEach(ch => {if(ch.checked) {ch.click()}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment