StreetPass for Mastodon
Find your people on Mastodon
Wat is StreetPass for Mastodon?
StreetPass for Mastodon is een Chrome-extensie ontwikkeld door https://streetpass.social, en de belangrijkste functie is "Find your people on Mastodon".
Extensie Screenshots
Download het CRX-bestand van de extensie StreetPass for Mastodon
Download StreetPass for Mastodon-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | StreetPass for Mastodon |
ID | fphjfedjhinpnjblomfebcjjpdpakhhn |
Officiële URL | https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn |
Beschrijving | Find your people on Mastodon |
Bestandsgrootte | 195 KB |
Aantal Installaties | 1,424 |
Huidige Versie | 2024.1 |
Laatst Bijgewerkt | 2024-02-22 |
Publicatiedatum | 2023-01-15 |
Beoordeling | 4.92/5 Totaal 13 Beoordelingen |
Ontwikkelaar | https://streetpass.social |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://streetpass.social |
Help Pagina-URL | https://github.com/tvler/streetpass/issues |
Ondersteunde Talen | 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" } } |