StreetPass for Mastodon

Find your people on Mastodon

StreetPass for Mastodon là gì?

StreetPass for Mastodon là một tiện ích mở rộng Chrome được phát triển bởi https://streetpass.social, và tính năng chính của nó là "Find your people on Mastodon".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng StreetPass for Mastodon

Tải xuống các tệp mở rộng StreetPass for Mastodon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên StreetPass for Mastodon StreetPass for Mastodon
ID fphjfedjhinpnjblomfebcjjpdpakhhn
URL Chính Thức https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn
Mô tả Find your people on Mastodon
Kích Thước Tệp 195 KB
Số Lần Cài Đặt 1,424
Phiên Bản Hiện Tại 2024.1
Cập Nhật Lần Cuối 2024-02-22
Ngày Phát Hành 2023-01-15
Đánh Giá 4.92/5 Tổng số 13 Đánh Giá
Nhà Phát Triển https://streetpass.social
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://streetpass.social
URL Trang Trợ Giúp https://github.com/tvler/streetpass/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}