Last active
August 29, 2015 14:25
-
-
Save AlexanderTserkovniy/652e6872737950ab86c2 to your computer and use it in GitHub Desktop.
Google inbox select all items
This file contains 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:+function(){var all = document.querySelectorAll('.J.itemCheckboxOff');all = Array.prototype.slice.call(all);all.forEach(function (span) {span.click();});}(); |
This file contains 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
var all = document.querySelectorAll('.J.itemCheckboxOff'); | |
all = Array.prototype.slice.call(all); | |
all.forEach(function (span) {span.click();}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment