Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Hvad er Mastodon Handles in Twitter?

Mastodon Handles in Twitter er en Chrome-udvidelse udviklet af Lennard Scheibel, og dens hovedfunktion er "A helper to find people on Twitter that use Mastodon.".

Udvidelsesskærmbilleder

screenshot

Download Mastodon Handles in Twitter-udvidelses-CRX-fil

Download Mastodon Handles in Twitter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
Officiel URL https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
Beskrivelse A helper to find people on Twitter that use Mastodon.
Filstørrelse 11.34 KB
Antal Installationer 130
Nuværende Version 1.2.1
Senest Opdateret 2023-12-02
Udgivelsesdato 2022-11-15
Bedømmelse 4.00/5 Samlet 3 Bedømmelser
Udvikler Lennard Scheibel
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/lscheibel/mastodon-handles-in-twitter
Hjælpeside-URL https://github.com/lscheibel/mastodon-handles-in-twitter/issues
Understøttede Sprog 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"
    }
}