Skip to content

Instantly share code, notes, and snippets.

@kyletaylored
Created January 20, 2017 20:17
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 kyletaylored/6353009b2966519d20c38a6bd07185bb to your computer and use it in GitHub Desktop.
Save kyletaylored/6353009b2966519d20c38a6bd07185bb to your computer and use it in GitHub Desktop.
A one-liner to run in your console when you need to uncheck many modules on the uninstall screen.
[...document.querySelectorAll(".form-type-checkbox input.form-checkbox:not([disabled])")].forEach(checkbox => checkbox.checked=true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment