Mastodon Link

Extension to make it easy to visit mastodon profiles from your instance

Что такое Mastodon Link?

Mastodon Link - это расширение Chrome, разработанное masrly, и его основная функция - "Extension to make it easy to visit mastodon profiles from your instance".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Mastodon Link

Скачайте файлы расширений Mastodon Link в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Adds a clickable mastodon icon next to mastodon style usernames (@[email protected]) that directs you to your own mastodon instance for ease of following.                    

Основная информация о расширении

Название Mastodon Link Mastodon Link
ID nlfdgcdfjnobjocicnddjghdbmgglame
Официальный URL https://chromewebstore.google.com/detail/mastodon-link/nlfdgcdfjnobjocicnddjghdbmgglame
Описание Extension to make it easy to visit mastodon profiles from your instance
Размер файла 20.41 KB
Количество установок 544
Текущая Версия 1.2.1
Последнее Обновление 2022-11-28
Дата публикации 2022-11-23
Рейтинг 4.75/5 Всего 4 оценок
Разработчик masrly
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/masrly/mastodon-link
URL страницы помощи https://github.com/masrly/mastodon-link
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Link",
    "version": "1.2.1",
    "author": "Alexander Haslam <@[email protected]>",
    "manifest_version": 3,
    "description": "Extension to make it easy to visit mastodon profiles from your instance",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "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"
    }
}