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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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]"
        }
    }
}