Skip to content

Instantly share code, notes, and snippets.

@rneiss
Created January 10, 2022 16:21
Show Gist options
  • Save rneiss/c9383637171e3d392683118eaca3e369 to your computer and use it in GitHub Desktop.
Save rneiss/c9383637171e3d392683118eaca3e369 to your computer and use it in GitHub Desktop.
bookmarklet to select text on unselectable websites
javascript:(function()%7Bdocument.querySelectorAll(%22*%22).forEach(el%20%3D%3E%20%7Bel.style.userSelect%20%3D%20%22auto%22%3B%7D)%7D)()
@rneiss
Copy link
Author

rneiss commented Jan 10, 2022

to use, create a new bookmark using the browser of your choice, and paste the above into the location field. Obviously this works best when you put it on your bookmark bar....

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