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文件

下載StreetPass for Mastodon擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}