{
  "name": "playsvideo",
  "short_name": "playsvideo",
  "description": "Play any video file in the browser — no server needed",
  "start_url": "/player",
  "scope": "/player",
  "display": "standalone",
  "background_color": "#111111",
  "theme_color": "#111111",
  "icons": [
    { "src": "/icons/icon-192.png", "sizes": "192x192", "type": "image/png" },
    { "src": "/icons/icon-512.png", "sizes": "512x512", "type": "image/png" },
    {
      "src": "/icons/icon-maskable-512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "maskable"
    }
  ],
  "file_handlers": [
    {
      "action": "/player",
      "accept": {
        "video/mp4": [".mp4", ".m4v"],
        "video/webm": [".webm"],
        "video/x-matroska": [".mkv"],
        "video/quicktime": [".mov"],
        "video/avi": [".avi"]
      }
    }
  ],
  "share_target": {
    "action": "/player/share-target",
    "method": "POST",
    "enctype": "multipart/form-data",
    "params": {
      "files": [
        {
          "name": "video",
          "accept": [
            "video/mp4",
            "video/webm",
            "video/x-matroska",
            "video/quicktime",
            ".mp4",
            ".mkv",
            ".webm",
            ".mov",
            ".avi",
            ".m4v"
          ]
        }
      ]
    }
  }
}
