StreetPass for Mastodon
Find your people on Mastodon
StreetPass for Mastodon क्या है?
StreetPass for Mastodon https://streetpass.social द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find your people on Mastodon"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में StreetPass for Mastodon एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } } |