Created
September 13, 2020 22:42
-
-
Save RoryDuncan/23d2982ea0c7641b9a07c27b3b284f5e to your computer and use it in GitHub Desktop.
Script for kicking all users from a google meet call
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
(() => { | |
let thenKickSelf = window.confirm("Kick yourself too?"); | |
const wait = (ms) => new Promise(resolve => window.setTimeout(resolve, ms)); | |
const click = (el) => (el.click(), wait(260)); | |
const confirm = () => click(document.querySelector(`[data-id="EBS5u"]`)); | |
const buttons = Array.from(document.querySelectorAll(`[data-tooltip="Remove from meeting"]`)); | |
const kickSelf = () => document.querySelector(`[data-tooltip="Leave call"]`).click(); | |
let init = wait(0); | |
buttons.reduce((chain, el) => { | |
return chain | |
.then(() => click(el)) | |
.then(() => confirm()) | |
.then(() => wait(50)) | |
}, init).then(() => (console.log("Done."), thenKickSelf ? kickSelf() : undefined)); | |
})(); |
You paste this into the devtools console.
Google Meet redesigned their UI a few months ago—so, I'm not sure if this script still works.
update new script please
update new script please
Update script please
it wont work
can you guys not see tht it is a raw script
u paste it in your search bar like this: javascript:(code goes here)
can you guys not see tht it is a raw script
So can you not use it
Can someone please tell me how to use the script.
uhhh any update?
yea
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
where to paste this?