StreetPass for Mastodon

Find your people on Mastodon

Apa itu StreetPass for Mastodon?

StreetPass for Mastodon adalah ekstensi Chrome yang dikembangkan oleh https://streetpass.social, dan fitur utamanya adalah "Find your people on Mastodon".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi StreetPass for Mastodon

Unduh file ekstensi StreetPass for Mastodon 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

                        StreetPass is a browser extension that helps you find your people on Mastodon. Here's how it works:

1. Mastodon users verify themselves by adding a custom link to their personal site.
2. StreetPass lets you know when you've found one of these links, and adds them to your StreetPass list.
3. Browse the web as usual. StreetPass will build a list of Mastodon users made up of the websites you go to.                    

Informasi Dasar Ekstensi

Nama StreetPass for Mastodon StreetPass for Mastodon
ID fphjfedjhinpnjblomfebcjjpdpakhhn
URL Resmi https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn
Deskripsi Find your people on Mastodon
Ukuran File 195 KB
Jumlah Instalasi 1,424
Versi Saat Ini 2024.1
Terakhir Diperbarui 2024-02-22
Tanggal Publikasi 2023-01-15
Penilaian 4.92/5 Total 13 Penilaian
Pengembang https://streetpass.social
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://streetpass.social
URL Halaman Bantuan https://github.com/tvler/streetpass/issues
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "StreetPass for Mastodon",
    "version": "2024.1",
    "description": "Find your people on Mastodon",
    "homepage_url": "https:\/\/streetpass.social\/",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "action": {
        "default_popup": "src\/popup.html",
        "default_title": "StreetPass",
        "default_icon": {
            "16": "\/action-inactive-16.png",
            "19": "\/action-inactive-19.png",
            "32": "\/action-inactive-32.png",
            "38": "\/action-inactive-38.png"
        }
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}