Created
January 8, 2025 11:50
-
-
Save RichardoC/a55f260bacbe8aae6a4102afba859e1c to your computer and use it in GitHub Desktop.
Unblur old slack messages
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
// This is probably against Slack's ToS. | |
// This is only intended for use to rescue old slack messages on public - open source - slack instances | |
// Run this javascript from the console - provided you're already viewing slack in the browser and opened a slack room you want to read | |
Array.from(document.getElementsByClassName('c-message_kit__hidden_message_blur')).forEach(el => el.classList.remove('c-message_kit__hidden_message_blur')) | |
// Here it is as a bookmark. Click this bookmark to unhide the messages | |
javascript:(function(){Array.from(document.getElementsByClassName('c-message_kit__hidden_message_blur')).forEach(el => el.classList.remove('c-message_kit__hidden_message_blur'))})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment