StreetPass for Mastodon
Find your people on Mastodon
Vad är StreetPass for Mastodon?
StreetPass for Mastodon är en Chrome-tillägg utvecklad av https://streetpass.social, och dess huvudfunktion är "Find your people on Mastodon".
Tilläggsskärmbilder
Ladda ner StreetPass for Mastodon-förlängningens CRX-fil
Ladda ner StreetPass for Mastodon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | StreetPass for Mastodon |
ID | fphjfedjhinpnjblomfebcjjpdpakhhn |
Officiell webbadress | https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn |
Beskrivning | Find your people on Mastodon |
Filstorlek | 195 KB |
Antal Installationer | 1,424 |
Aktuell Version | 2024.1 |
Senast Uppdaterad | 2024-02-22 |
Publiceringsdatum | 2023-01-15 |
Betyg | 4.92/5 Totalt 13 Betyg |
Utvecklare | https://streetpass.social |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://streetpass.social |
Hjälpsida URL | https://github.com/tvler/streetpass/issues |
Stödda Språk | 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" } } |