Skip to content

Instantly share code, notes, and snippets.

@gondo
Forked from aseemk/README.md
Created August 12, 2015 15:19
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 gondo/d60932d565de14b3c017 to your computer and use it in GitHub Desktop.
Save gondo/d60932d565de14b3c017 to your computer and use it in GitHub Desktop.
A bookmarklet for "selecting all" (technically, "toggling all") checkboxes on the Amazon AWS S3 console.
javascript:(function () {
document.domain = 'console.aws.amazon.com';
var spans = document.querySelector('iframe').contentDocument.querySelectorAll('tr.list-view-item[type] span.inner');
[].slice.call(spans).forEach(function (span) {
span.click();
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment