Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Created February 27, 2025 17:47
Show Gist options
  • Save schalkburger/4d8ed2f1020acbe2a537ccb62a425f3a to your computer and use it in GitHub Desktop.
Save schalkburger/4d8ed2f1020acbe2a537ccb62a425f3a to your computer and use it in GitHub Desktop.
A simple bookmarklet to share the current page on Bluesky
javascript:(function(){n=getSelection().anchorNode;if(!n){t=document.title;}else{t=n.nodeType===3?n.data:n.innerText;}t=%27“%27+t.trim()+%27”\n\n%27;window.open(`https://bsky.app/intent/compose?text=${encodeURIComponent(t)}${document.location.href}`)})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment