Skip to content

Instantly share code, notes, and snippets.

@tsibley
Created September 20, 2023 23:48
Show Gist options
  • Save tsibley/8fa899bfcb74add22ec4be2e8ebaa354 to your computer and use it in GitHub Desktop.
Save tsibley/8fa899bfcb74add22ec4be2e8ebaa354 to your computer and use it in GitHub Desktop.
const config = JSON.parse(localStorage.getItem("localConfig_v2"));
for (const [teamId, team] of Object.entries(config.teams)) {
team.is_unified_user_client_enabled = false;
}
localStorage.setItem("localConfig_v2", JSON.stringify(config));
window.location.reload();
@tsibley
Copy link
Author

tsibley commented Sep 20, 2023

SLACK_DEVELOPER_MENU=true slack

Ctrl-Alt-I to open Chromium dev tools

copy/paste above

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