Skip to content

Instantly share code, notes, and snippets.

@jaymcgavren
Last active November 4, 2022 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaymcgavren/c5f6cf1bf1d6029f75c44125b4c3d282 to your computer and use it in GitHub Desktop.
Save jaymcgavren/c5f6cf1bf1d6029f75c44125b4c3d282 to your computer and use it in GitHub Desktop.
This bookmarklet copies the selected text and current URL to the clipboard. Create a new bookmark and set the URL to the content below. The setTimeout allows it to be invoked from the Chrome "Open Location" bar.
javascript:setTimeout(async()=>await navigator.clipboard.writeText('"'+window.getSelection().toString()+'"\n'+location), 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment