Created
May 27, 2025 19:47
-
-
Save Grissess/49047ee27cb8255d29753b2004f0dabe to your computer and use it in GitHub Desktop.
Become any user in the When2meet meeting without logging in
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
// 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