Kbin Link

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

Co to jest Kbin Link?

Kbin Link to rozszerzenie Chrome opracowane przez ricciodaniel98, a jego główną funkcją jest „Extension to make it easy to visit Lemmy communities from kbin.social”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Kbin Link

Pobierz pliki rozszerzeń Kbin Link w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Kbin Link Kbin Link
ID jjkdhggoccldmigjpgilnfgiihclflio
Oficjalny URL https://chromewebstore.google.com/detail/kbin-link/jjkdhggoccldmigjpgilnfgiihclflio
Opis Extension to make it easy to visit Lemmy communities from kbin.social
Rozmiar pliku 24.39 KB
Liczba instalacji 78
Aktualna Wersja 1.3.9
Ostatnia Aktualizacja 2023-06-21
Data Publikacji 2023-06-17
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper ricciodaniel98
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://kbin.social/u/lixus98
Obsługiwane Języki 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]"
        }
    }
}