Skip to content

Instantly share code, notes, and snippets.

@jasoncodes
Created February 6, 2025 05:50
Show Gist options
  • Save jasoncodes/5c48aac85845f3965e2ff0c90d1bca73 to your computer and use it in GitHub Desktop.
Save jasoncodes/5c48aac85845f3965e2ff0c90d1bca73 to your computer and use it in GitHub Desktop.
Microsoft Loop uncheck all bookmarklet
A simple bookmarklet to uncheck all the checkboxes in the current Microsoft Loop document.
Minified using http://chriszarate.github.io/bookmarkleter/.
javascript:void%20function(){document.querySelectorAll(%22.scriptor-pageBody%20.scriptor-listItem-marker-text-checkbox-checked%22).forEach(function(a){a.click()})}();
document.querySelectorAll('.scriptor-pageBody .scriptor-listItem-marker-text-checkbox-checked').forEach(function(element) {
element.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment