Created
February 6, 2025 05:50
-
-
Save jasoncodes/5c48aac85845f3965e2ff0c90d1bca73 to your computer and use it in GitHub Desktop.
Microsoft Loop uncheck all bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A simple bookmarklet to uncheck all the checkboxes in the current Microsoft Loop document. | |
Minified using http://chriszarate.github.io/bookmarkleter/. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:void%20function(){document.querySelectorAll(%22.scriptor-pageBody%20.scriptor-listItem-marker-text-checkbox-checked%22).forEach(function(a){a.click()})}(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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