Skip to content

Instantly share code, notes, and snippets.

@bjankord
Created July 30, 2019 17:32
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 bjankord/8188f0c29e7d10c78d8639738f815ff3 to your computer and use it in GitHub Desktop.
Save bjankord/8188f0c29e7d10c78d8639738f815ff3 to your computer and use it in GitHub Desktop.
Viewed All Files script
// Checkes all "Viewed" checkboxes
var x = document.querySelectorAll('.js-reviewed-checkbox'), i = 0;
for (i = 0; i < x.length; i++) {
x[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment