Skip to content

Instantly share code, notes, and snippets.

@kseikyo
Created March 6, 2023 14:34
Show Gist options
  • Save kseikyo/ab6bbc149d47fa655d457ef3200596eb to your computer and use it in GitHub Desktop.
Save kseikyo/ab6bbc149d47fa655d457ef3200596eb to your computer and use it in GitHub Desktop.
Enable text selection on telegram web
  1. Create new bookmark
  2. Name it
  3. Paste the following code in the url input
javascript: (() => {const protectedMessages = document.querySelectorAll(".is-protected"); for(const msg of protectedMessages){msg.classList.remove("is-protected");}})();

To run, just click on the bookmark in the telegram web tab.

This will get all protected messages that are currently on the DOM and remove the is-protected class that prevents text-selection.

If you scroll too much, switch chats or right click a message, you'll have to run it again.

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