Skip to content

Instantly share code, notes, and snippets.

@voronianski
Created June 23, 2019 09:49
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 voronianski/b0bd4ecffc0919000ec7146bd5d7e4dd to your computer and use it in GitHub Desktop.
Save voronianski/b0bd4ecffc0919000ec7146bd5d7e4dd to your computer and use it in GitHub Desktop.
Open console and run here https://github.com/watching
(function () {
const nodes = document.querySelectorAll('button.select-menu-item[value="included');
const arr = [ ...nodes ];
arr.forEach(button => {
setTimeout(() => {
button.click();
}, 500);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment