Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Vad är Mastodon Handles in Twitter?

Mastodon Handles in Twitter är en Chrome-tillägg utvecklad av Lennard Scheibel, och dess huvudfunktion är "A helper to find people on Twitter that use Mastodon.".

Tilläggsskärmbilder

screenshot

Ladda ner Mastodon Handles in Twitter-förlängningens CRX-fil

Ladda ner Mastodon Handles in Twitter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
Officiell webbadress https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
Beskrivning A helper to find people on Twitter that use Mastodon.
Filstorlek 11.34 KB
Antal Installationer 130
Aktuell Version 1.2.1
Senast Uppdaterad 2023-12-02
Publiceringsdatum 2022-11-15
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare Lennard Scheibel
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lscheibel/mastodon-handles-in-twitter
Hjälpsida URL https://github.com/lscheibel/mastodon-handles-in-twitter/issues
Stödda Språk 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"
    }
}