StreetPass for Mastodon
Find your people on Mastodon
StreetPass for Mastodonとは何ですか?
StreetPass for Mastodonはhttps://streetpass.socialによって開発されたChromeの拡張機能で、その主な機能は「Find your people on Mastodon」です。
拡張機能のスクリーンショット
StreetPass for Mastodon拡張機能のCRXファイルをダウンロード
StreetPass for Mastodon拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } |