Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Co to jest Mastodon Handles in Twitter?

Mastodon Handles in Twitter to rozszerzenie Chrome opracowane przez Lennard Scheibel, a jego główną funkcją jest „A helper to find people on Twitter that use Mastodon.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Mastodon Handles in Twitter

Pobierz pliki rozszerzeń Mastodon Handles in Twitter 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

                        This extension adds a little mastodon icon next to users that mention their mastodon handle in their bio. Simply click the icon to go to their mastodon account.                    

Podstawowe informacje o rozszerzeniu

Nazwa Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
Oficjalny URL https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
Opis A helper to find people on Twitter that use Mastodon.
Rozmiar pliku 11.34 KB
Liczba instalacji 130
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2023-12-02
Data Publikacji 2022-11-15
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper Lennard Scheibel
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lscheibel/mastodon-handles-in-twitter
Adres URL Strony Pomocy https://github.com/lscheibel/mastodon-handles-in-twitter/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Handles in Twitter",
    "description": "A helper to find people on Twitter that use Mastodon.",
    "version": "1.2.1",
    "manifest_version": 3,
    "permissions": [
        "https:\/\/*.twitter.com\/*",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.twitter.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    }
}