StreetPass for Mastodon

Find your people on Mastodon

StreetPass for Mastodon란 무엇입니까?

StreetPass for Mastodon은(는) https://streetpass.social에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find your people on Mastodon"입니다.

확장 프로그램 스크린샷

screenshot

StreetPass for Mastodon 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 StreetPass for Mastodon StreetPass for Mastodon
ID fphjfedjhinpnjblomfebcjjpdpakhhn
공식 URL https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn
설명 Find your people on Mastodon
파일 크기 195 KB
설치 횟수 1,424
현재 버전 2024.1
최근 업데이트 2024-02-22
출시 날짜 2023-01-15
평점 4.92/5 총 13 개의 평점
개발자 https://streetpass.social
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://streetpass.social
도움말 페이지 URL https://github.com/tvler/streetpass/issues
지원되는 언어 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"
    }
}