Created
June 23, 2019 09:49
-
-
Save voronianski/b0bd4ecffc0919000ec7146bd5d7e4dd to your computer and use it in GitHub Desktop.
Open console and run here https://github.com/watching
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
(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