Created
September 4, 2024 17:40
-
-
Save edavis/0daf6c11c196c9b5cf8fdc1afcd87312 to your computer and use it in GitHub Desktop.
"View in Astrolabe" bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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