Last active
June 29, 2023 09:02
-
-
Save Nitrousoxide/0ad922d431749d6e4f7c9a35d40da4dc to your computer and use it in GitHub Desktop.
Lemmy Follow 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 instanceUrl = 'https://beehaw.org'; /*replace this with your local instance's URL with no ending '/' */ | |
var communitySlug = currentUrl.split('/c/')[1]; | |
var originalUrl = currentUrl.split('/')[2]; | |
var subscribeUrl = instanceUrl + '/c/' + communitySlug + '@' + originalUrl; | |
window.location.href = subscribeUrl; | |
})(); |
Here's a version that also works for a community from server A on server B:
Thanks for this! It's working great!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's a version that also works for a community from server A on server B: