Kbin Link

Extension to make it easy to visit Lemmy communities from kbin.social

What is Kbin Link?

Kbin Link is a Chrome extension developed by ricciodaniel98, and its main feature is "Extension to make it easy to visit Lemmy communities from kbin.social".

Extension Screenshots

screenshot
screenshot

Download Kbin Link Extension CRX File

Download Kbin Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Find it annoying to copy paste `[email protected]` to look at a Lemmy community? This extension is for you.

This extension looks for Lemmy style communities and replaces them to direct you to seeing that community on your kbin/lemmy instance.

It also works on every website! Not just on your main instance.

This extension looks for Lemmy style community mentions ([email protected]) and replaces them with a link to direct you to seeing that community on your Kbin or Lemmy instance.                    

Extension Basic Information

Name Kbin Link Kbin Link
ID jjkdhggoccldmigjpgilnfgiihclflio
Official URL https://chromewebstore.google.com/detail/kbin-link/jjkdhggoccldmigjpgilnfgiihclflio
Description Extension to make it easy to visit Lemmy communities from kbin.social
File Size 24.39 KB
Installation Count 78
Current Version 1.3.9
Last Updated 2023-06-21
Publish Date 2023-06-17
Rating 3.00/5 Total 2 Ratings
Developer ricciodaniel98
Email [email protected]
Payment Type free
Extension Website https://kbin.social/u/lixus98
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kbin Link",
    "version": "1.3.9",
    "author": "Daniel Riccio <@[email protected]>",
    "manifest_version": 3,
    "description": "Extension to make it easy to visit Lemmy communities from kbin.social",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}