Skip to content

Instantly share code, notes, and snippets.

View Copperlanding's full-sized avatar

Copperlanding

View GitHub Profile
@willurd
willurd / bookmarklet_select_all.js
Last active March 15, 2022 07:11
Select All: A bookmarklet for those annoying sites that block you from selecting stuff
javascript:(function()%7Bvar style%3Ddocument.createElement("style")%3Bstyle.type%3D"text/css"%3Bstyle.innerText%3D"* %7B -webkit-user-select: all !important%3B -moz-user-select: all !important%3B user-select: all !important%3B %7D"%3Bvar head%3Ddocument.getElementsByTagName("head")%5B0%5D%3Bhead.appendChild(style)%3B%7D)()%3B