StreetPass for Mastodon

Find your people on Mastodon

Co je StreetPass for Mastodon?

StreetPass for Mastodon je rozšíření Chrome vyvinuté https://streetpass.social, a jeho hlavní funkcí je „Find your people on Mastodon“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření StreetPass for Mastodon

Stáhněte si soubory rozšíření StreetPass for Mastodon ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název StreetPass for Mastodon StreetPass for Mastodon
ID fphjfedjhinpnjblomfebcjjpdpakhhn
Oficiální URL https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn
Popis Find your people on Mastodon
Velikost souboru 195 KB
Počet instalací 1,424
Aktuální Verze 2024.1
Poslední Aktualizace 2024-02-22
Datum Vydání 2023-01-15
Hodnocení 4.92/5 Celkem 13 Hodnocení
Vývojář https://streetpass.social
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://streetpass.social
URL Stránky Nápovědy https://github.com/tvler/streetpass/issues
Podporované Jazyky 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"
    }
}