Kbin Link

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

Wat is Kbin Link?

Kbin Link is een Chrome-extensie ontwikkeld door ricciodaniel98, en de belangrijkste functie is "Extension to make it easy to visit Lemmy communities from kbin.social".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Kbin Link

Download Kbin Link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Kbin Link Kbin Link
ID jjkdhggoccldmigjpgilnfgiihclflio
Officiële URL https://chromewebstore.google.com/detail/kbin-link/jjkdhggoccldmigjpgilnfgiihclflio
Beschrijving Extension to make it easy to visit Lemmy communities from kbin.social
Bestandsgrootte 24.39 KB
Aantal Installaties 78
Huidige Versie 1.3.9
Laatst Bijgewerkt 2023-06-21
Publicatiedatum 2023-06-17
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar ricciodaniel98
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://kbin.social/u/lixus98
Ondersteunde Talen 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]"
        }
    }
}