Mastodon Link

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

Co to jest Mastodon Link?

Mastodon Link to rozszerzenie Chrome opracowane przez masrly, a jego główną funkcją jest „Extension to make it easy to visit mastodon profiles from your instance”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Mastodon Link

Pobierz pliki rozszerzeń Mastodon Link w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Mastodon Link Mastodon Link
ID nlfdgcdfjnobjocicnddjghdbmgglame
Oficjalny URL https://chromewebstore.google.com/detail/mastodon-link/nlfdgcdfjnobjocicnddjghdbmgglame
Opis Extension to make it easy to visit mastodon profiles from your instance
Rozmiar pliku 20.41 KB
Liczba instalacji 544
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2022-11-28
Data Publikacji 2022-11-23
Ocena 4.75/5 Łącznie 4 Oceny
Deweloper masrly
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/masrly/mastodon-link
Adres URL Strony Pomocy https://github.com/masrly/mastodon-link
Obsługiwane Języki 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"
    }
}