Skip to content

Instantly share code, notes, and snippets.

@AlexanderTserkovniy
Last active August 29, 2015 14:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save AlexanderTserkovniy/652e6872737950ab86c2 to your computer and use it in GitHub Desktop.
Google inbox select all items
javascript:+function(){var all = document.querySelectorAll('.J.itemCheckboxOff');all = Array.prototype.slice.call(all);all.forEach(function (span) {span.click();});}();
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