Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Co je Mastodon Handles in Twitter?

Mastodon Handles in Twitter je rozšíření Chrome vyvinuté Lennard Scheibel, a jeho hlavní funkcí je „A helper to find people on Twitter that use Mastodon.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Mastodon Handles in Twitter

Stáhněte si soubory rozšíření Mastodon Handles in Twitter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
Oficiální URL https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
Popis A helper to find people on Twitter that use Mastodon.
Velikost souboru 11.34 KB
Počet instalací 130
Aktuální Verze 1.2.1
Poslední Aktualizace 2023-12-02
Datum Vydání 2022-11-15
Hodnocení 4.00/5 Celkem 3 Hodnocení
Vývojář Lennard Scheibel
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/lscheibel/mastodon-handles-in-twitter
URL Stránky Nápovědy https://github.com/lscheibel/mastodon-handles-in-twitter/issues
Podporované Jazyky 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"
    }
}