Skip to content

Instantly share code, notes, and snippets.

@edavis
Created September 4, 2024 17:40
Show Gist options
  • Save edavis/0daf6c11c196c9b5cf8fdc1afcd87312 to your computer and use it in GitHub Desktop.
Save edavis/0daf6c11c196c9b5cf8fdc1afcd87312 to your computer and use it in GitHub Desktop.
"View in Astrolabe" bookmarklet
javascript:(function(){
var currentUrl = window.location.href;
var newUrl = currentUrl
.replace('https://bsky.app/profile/', 'https://astrolabe.edavis.dev/at/')
.replace('/post/', '/app.bsky.feed.post/');
window.open(newUrl, '_blank');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment