StreetPass for Mastodon
Find your people on Mastodon
ما هو StreetPass for Mastodon؟
StreetPass for Mastodon هو إضافة Chrome تم تطويرها بواسطة https://streetpass.social، والميزة الرئيسية لها هي "Find your people on Mastodon".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة StreetPass for Mastodon
قم بتنزيل ملفات الامتداد StreetPass for Mastodon بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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" } } |