Created
October 13, 2023 10:54
-
-
Save filfreire/a49bbd1e24e13d10ae7c3ffa6ed7a407 to your computer and use it in GitHub Desktop.
revert Slack UI 2023
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
(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