Kbin Link

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

Τι είναι το Kbin Link;

Το Kbin Link είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ricciodaniel98, και η κύρια λειτουργία του είναι "Extension to make it easy to visit Lemmy communities from kbin.social".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Kbin Link

Λήψη αρχείων επέκτασης Kbin Link σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Kbin Link Kbin Link
ID jjkdhggoccldmigjpgilnfgiihclflio
Επίσημο URL https://chromewebstore.google.com/detail/kbin-link/jjkdhggoccldmigjpgilnfgiihclflio
Περιγραφή Extension to make it easy to visit Lemmy communities from kbin.social
Μέγεθος Αρχείου 24.39 KB
Αριθμός Εγκαταστάσεων 78
Τρέχουσα Έκδοση 1.3.9
Τελευταία Ενημέρωση 2023-06-21
Ημερομηνία Δημοσίευσης 2023-06-17
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής ricciodaniel98
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://kbin.social/u/lixus98
Υποστηριζόμενες Γλώσσες 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]"
        }
    }
}