StreetPass for Mastodon
Find your people on Mastodon
Was ist StreetPass for Mastodon?
StreetPass for Mastodon ist eine Chrome-Erweiterung, die von https://streetpass.social entwickelt wurde, und ihr Hauptmerkmal ist "Find your people on Mastodon".
Erweiterungsscreenshots
StreetPass for Mastodon-Erweiterungs-CRX-Datei herunterladen
Laden Sie StreetPass for Mastodon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | StreetPass for Mastodon |
ID | fphjfedjhinpnjblomfebcjjpdpakhhn |
Offizielle URL | https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn |
Beschreibung | Find your people on Mastodon |
Dateigröße | 195 KB |
Installationsanzahl | 1,424 |
Aktuelle Version | 2024.1 |
Letztes Update | 2024-02-22 |
Veröffentlichungsdatum | 2023-01-15 |
Bewertung | 4.92/5 Insgesamt 13 Bewertungen |
Entwickler | https://streetpass.social |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://streetpass.social |
Hilfeseite URL | https://github.com/tvler/streetpass/issues |
Unterstützte Sprachen | 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" } } |