Skip to content

Instantly share code, notes, and snippets.

@RichardoC
Created January 8, 2025 11:50
Show Gist options
  • Save RichardoC/a55f260bacbe8aae6a4102afba859e1c to your computer and use it in GitHub Desktop.
Save RichardoC/a55f260bacbe8aae6a4102afba859e1c to your computer and use it in GitHub Desktop.
Unblur old slack messages
// 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