Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Cos'è Mastodon Handles in Twitter?

Mastodon Handles in Twitter è un'estensione di Chrome sviluppata da Lennard Scheibel, e la sua funzione principale è "A helper to find people on Twitter that use Mastodon.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mastodon Handles in Twitter

Scarica i file di estensione Mastodon Handles in Twitter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
URL Ufficiale https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
Descrizione A helper to find people on Twitter that use Mastodon.
Dimensione del File 11.34 KB
Conteggio Installazioni 130
Versione Corrente 1.2.1
Ultimo Aggiornamento 2023-12-02
Data di Pubblicazione 2022-11-15
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore Lennard Scheibel
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lscheibel/mastodon-handles-in-twitter
URL della Pagina di Aiuto https://github.com/lscheibel/mastodon-handles-in-twitter/issues
Lingue Supportate 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"
    }
}