Skip to content

Instantly share code, notes, and snippets.

@filfreire
Created October 13, 2023 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filfreire/a49bbd1e24e13d10ae7c3ffa6ed7a407 to your computer and use it in GitHub Desktop.
Save filfreire/a49bbd1e24e13d10ae7c3ffa6ed7a407 to your computer and use it in GitHub Desktop.
revert Slack UI 2023
(function() {
'use strict';
let localConfig = localStorage.getItem("localConfig_v2");
if (localConfig) {
localConfig = localConfig.replace(/\"is_unified_user_client_enabled\":true/g, '\"is_unified_user_client_enabled\":false');
localStorage.setItem("localConfig_v2", localConfig);
}
})();
// from https://greasyfork.org/en/scripts/475463-slack-layout-ui-restore/code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment