StreetPass for Mastodon

Find your people on Mastodon

StreetPass for Mastodonคืออะไร?

StreetPass for Mastodon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://streetpass.social และคุณลักษณะหลักของมันคือ "Find your people on Mastodon"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StreetPass for Mastodon

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}