Kbin Link

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

Cos'è Kbin Link?

Kbin Link è un'estensione di Chrome sviluppata da ricciodaniel98, e la sua funzione principale è "Extension to make it easy to visit Lemmy communities from kbin.social".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Kbin Link

Scarica i file di estensione Kbin Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Kbin Link Kbin Link
ID jjkdhggoccldmigjpgilnfgiihclflio
URL Ufficiale https://chromewebstore.google.com/detail/kbin-link/jjkdhggoccldmigjpgilnfgiihclflio
Descrizione Extension to make it easy to visit Lemmy communities from kbin.social
Dimensione del File 24.39 KB
Conteggio Installazioni 78
Versione Corrente 1.3.9
Ultimo Aggiornamento 2023-06-21
Data di Pubblicazione 2023-06-17
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore ricciodaniel98
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://kbin.social/u/lixus98
Lingue Supportate 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]"
        }
    }
}