Skip to content

Instantly share code, notes, and snippets.

@Grissess
Created May 27, 2025 19:47
Show Gist options
  • Save Grissess/49047ee27cb8255d29753b2004f0dabe to your computer and use it in GitHub Desktop.
Save Grissess/49047ee27cb8255d29753b2004f0dabe to your computer and use it in GitHub Desktop.
Become any user in the When2meet meeting without logging in
// Usage: Define this in your console:
function BecomeUser(idx) {
UserID = PeopleIDs[idx];
document.getElementById("SignIn").style.display='none';
document.getElementById("YouGrid").style.display='';
document.getElementById("UserName").innerHTML=PeopleNames[idx];
ReColorIndividual();
}
// then pass an index into PeopleIDs, between 0 and PeopleIDs.length, as such:
// BecomeUser(0)
// BecomeUser(1)
// BecomeUser(2)
// (etc.)
// You are now "signed in" as this user, and can view or edit the personal calendar.
// If you know the name of the specific user you want to become, look at PeopleNames in your inspector to find the index.
// Alternatively, use PeopleNames.indexOf("name") in your console.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment