Greetings, kbeans! I wanted to inform you that Kbin Link is now available on the Firefox Extension Store. If you’re interested, you can find more information about it here: https://github.com/driccio98/kbin-link.

Kbin Link is a browser extension designed to simplify your browsing experience across different online communities. It detects community mentions in the format of “!communityname@lemmy.world” and it recognizes links in the format of “https://lemmy.word/c/memes” across any website and adds a convenient icon at the beginning. This icon allows you to quickly redirect to the corresponding community on Kbin, where you can easily subscribe to it.

Since this is a small project, there may be a few bugs or areas for improvement. If you encounter any issues or have suggestions, please let me know by leaving an issue on the GitHub repository.

Edit: Soon on the chrome store too!

Link to firefox store: https://addons.mozilla.org/en-US/firefox/addon/kbin-link/

Thank you for your support!

  • cwagner@kbin.social
    link
    fedilink
    arrow-up
    5
    ·
    1 year ago

    The regex for your community in options.html should be ^([a-zA-Z0-9\-ßàÁâãóôþüúðæåïçèõöÿýòäœêëìíøùîûñé]{1,63}\.)+[a-zA-Z]{2,63}$

    Not sure if there’s some issue I can’t think of, but it probably can even be simplified to ^([\w-]{1,63}\.)+[a-zA-Z]{2,63}$

    The current one, for example, doesn’t allow subdomain instances like kbin.example.org I already created a PR for the first version for the lemmy extension, but maybe someone can say why the simpler version would/wouldn’t be okay ;)