StreetPass for Mastodon

StreetPass for Mastodon

Find your people on Mastodon

Merlin
Additional files are visible only to premium users

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"
  }
}