Mastodon Handles in Twitter

A helper to find people on Twitter that use Mastodon.

Apa itu Mastodon Handles in Twitter?

Mastodon Handles in Twitter adalah ekstensi Chrome yang dikembangkan oleh Lennard Scheibel, dan fitur utamanya adalah "A helper to find people on Twitter that use Mastodon.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Mastodon Handles in Twitter

Unduh file ekstensi Mastodon Handles in Twitter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Mastodon Handles in Twitter Mastodon Handles in Twitter
ID ncgejfiheecflhpoifeembagnjgigioi
URL Resmi https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi
Deskripsi A helper to find people on Twitter that use Mastodon.
Ukuran File 11.34 KB
Jumlah Instalasi 130
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2023-12-02
Tanggal Publikasi 2022-11-15
Penilaian 4.00/5 Total 3 Penilaian
Pengembang Lennard Scheibel
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/lscheibel/mastodon-handles-in-twitter
URL Halaman Bantuan https://github.com/lscheibel/mastodon-handles-in-twitter/issues
Bahasa yang Didukung 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"
    }
}