With just a click, this bookmarklet will redirect you to a foreign community on your native Lemmy instance

It brings your favourite lemmy back home!

If you don’t know what it is, it’s a bookmark that runs a small piece of code that works in all desktop or even mobile browsers


javascript:(function(){
var url = new URL(document.URL);
var baseURL = url.hostname;
var pathname = url.pathname;
window.location.href="https://sopuli.xyz" + pathname + "@" + baseURL;
})();

Usage

  1. Copy the code, replace “https://sopuli.xyz” in the code to URL of your native instance (for example to “https://lemmy.ca”)
  2. Create a new bookmark, paste the code from previous step into URL field
  3. Go to a non native lemmy community
  4. Click the bookmarklet in your bookmarks bar to activate it.
  • @Ludrol
    link
    English
    21 year ago

    Is this running as userscript in tempermonkey?

    • @shami1kemi1@sopuli.xyz
      link
      fedilink
      English
      31 year ago

      No, it’s not. What you have to do is put the block of Javascript on the post into a bookmark on your browser. I suppose one could also make a TamperMonkey-userscript out of this, but this is not that.