Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Τι είναι το Mastodon Handles in Twitter;

Το Mastodon Handles in Twitter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lennard Scheibel, και η κύρια λειτουργία του είναι "A helper to find people on Twitter that use Mastodon.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Mastodon Handles in Twitter

Λήψη αρχείων επέκτασης Mastodon Handles in Twitter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
Επίσημο URL https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
Περιγραφή A helper to find people on Twitter that use Mastodon.
Μέγεθος Αρχείου 11.34 KB
Αριθμός Εγκαταστάσεων 130
Τρέχουσα Έκδοση 1.2.1
Τελευταία Ενημέρωση 2023-12-02
Ημερομηνία Δημοσίευσης 2022-11-15
Αξιολόγηση 4.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Lennard Scheibel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lscheibel/mastodon-handles-in-twitter
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/lscheibel/mastodon-handles-in-twitter/issues
Υποστηριζόμενες Γλώσσες 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"
    }
}