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