tl;dr: With Lemmy Go you type lg beekeeping on the address bar and it takes you to the most popular beekeeping community, or you can pick one from the given suggestions.

Get Lemmy Go for Firefox

Get Lemmy Go for Chrome

More information about Lemmy Go on GitHub

Why

On Reddit, I had a simple search keyword for navigating directly to subreddits, where I could just type r firefox and be taken to reddit.com/r/firefox.

I wanted to have the same behavior for Lemmy, but the Fediverse makes this a lot more complicated.

So I made Lemmy Go to try and make it as simple as possible to jump to a community, or even find new ones more easily.

It’s still a work in progress, so it might be a bit unstable and missing a bunch of features. But I’ve been using it myself for a few days, and it’s already pretty helpful.

Usage

Type lg followed by a space (some browsers also accept tab instead), and then type the name of the community you’re looking for.

Example: lg linux

Lemmy Go will search its database for any community that has the text linux in its name (e.g. linux_gaming) or title (Linux Gaming).

If you just type a community name and press enter, Lemmy Go will take you to the most popular community from that list.

If you don’t press enter right away, you will be shown a list of communities that match that query. You can then select the specific one you want.

Preferred Instance

If you set your preferred instance in the user settings (click the extension icon), Lemmy Go will try its best to navigate to that community in your preferred instance, although this isn’t always possible (in which case Lemmy Go will just navigate to the remote instance instead).

For instance, if your preferred instance is set to lemmy.ml and you select firefox@lemmy.world, Lemmy Go will take you to lemmy.ml/c/firefox@lemmy.world.

But if lemmy.ml blocks the lemmy.world instance, then Lemmy Go will take you to lemmy.world/c/firefox instead.

Read the readme on GitHub for more information about how Lemmy Go works

  • Raicuparta@lemmy.mlOP
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    Could you expand on that? What do you mean by communities on the main page? I want to provide different ways to sort the communities.

    Also, feel free to open issues on GitHub with suggestions and bug reports.

      • Raicuparta@lemmy.mlOP
        link
        fedilink
        English
        arrow-up
        3
        ·
        1 year ago

        Ah no worries. That’s the kind of thing you can fix by just adjusting CSS. Learning a bit of CSS is really useful for that reason.

        I had a quick look, and one easy way to do what you want is using an extension like Stylus, and then creating a new style with this CSS:

        @-moz-document domain("lemmy.world") {
            #sidebarContainer {
                display: flex;
                flex-direction: column-reverse;
            }
        }
        

        Just keep in mind that there’s a good chance this will stop working if the Lemmy frontend updates.