Last active
March 30, 2022 13:31
-
-
Save HanggiAnggono/b3d9eb0b6a0eb306a7ce1f610e9825ad to your computer and use it in GitHub Desktop.
Gather Mic Shortcut
This file contains hidden or 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
// put this in your browser console! | |
qwe = () => document.onkeypress = e => { | |
if (e.keyCode == 118) { | |
let button = document.querySelector('.GameVideo-self-video-container button'); | |
if (!button) button = document.querySelector('.GameVideosContainer-videobar-content button'); | |
button.click(); | |
} | |
} | |
qwe() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
looks good to me!