StreetPass for Mastodon
Find your people on Mastodon
Cos'è StreetPass for Mastodon?
StreetPass for Mastodon è un'estensione di Chrome sviluppata da https://streetpass.social, e la sua funzione principale è "Find your people on Mastodon".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione StreetPass for Mastodon
Scarica i file di estensione StreetPass for Mastodon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | StreetPass for Mastodon |
ID | fphjfedjhinpnjblomfebcjjpdpakhhn |
URL Ufficiale | https://chromewebstore.google.com/detail/streetpass-for-mastodon/fphjfedjhinpnjblomfebcjjpdpakhhn |
Descrizione | Find your people on Mastodon |
Dimensione del File | 195 KB |
Conteggio Installazioni | 1,424 |
Versione Corrente | 2024.1 |
Ultimo Aggiornamento | 2024-02-22 |
Data di Pubblicazione | 2023-01-15 |
Valutazione | 4.92/5 Totale 13 Valutazioni |
Sviluppatore | https://streetpass.social |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://streetpass.social |
URL della Pagina di Aiuto | https://github.com/tvler/streetpass/issues |
Lingue Supportate | 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" } } |