Skip to content

Instantly share code, notes, and snippets.

@HanggiAnggono
Last active March 30, 2022 13:31
Show Gist options
  • Save HanggiAnggono/b3d9eb0b6a0eb306a7ce1f610e9825ad to your computer and use it in GitHub Desktop.
Save HanggiAnggono/b3d9eb0b6a0eb306a7ce1f610e9825ad to your computer and use it in GitHub Desktop.
Gather Mic Shortcut
// 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()
@HanggiAnggono
Copy link
Author

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();
    }
}

looks good to me!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment