{
  "short_name": "ReviewModel 3D",
  "name": "ReviewModel 3D - Interactive Model Viewer",
  "description": "View, annotate, and review 3D models collaboratively in real-time",
  "icons": [
    {
      "src": "icons/icon-192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "icons/icon-512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "icons/icon-144.png",
      "sizes": "144x144",
      "type": "image/png"
    },
    {
      "src": "icons/icon-96.png",
      "sizes": "96x96",
      "type": "image/png"
    },
    {
      "src": "icons/icon-72.png",
      "sizes": "72x72",
      "type": "image/png"
    },
    {
      "src": "icons/icon-48.png",
      "sizes": "48x48",
      "type": "image/png"
    }
  ],
  "start_url": "/?source=pwa",
  "display": "standalone",
  "theme_color": "#6264A7",
  "background_color": "#111827",
  "orientation": "any",
  "scope": "/",
  "related_applications": [
    {
      "platform": "teams",
      "id": "reviewmodel-3d-app"
    }
  ],
  "categories": ["productivity", "business", "utilities"],
  "screenshots": [
    {
      "src": "screenshots/desktop-main.png",
      "sizes": "1920x1080",
      "type": "image/png",
      "platform": "wide",
      "label": "Main 3D viewer interface"
    },
    {
      "src": "screenshots/mobile-viewer.png",
      "sizes": "390x844",
      "type": "image/png",
      "platform": "narrow",
      "label": "Mobile 3D viewer"
    }
  ],
  "shortcuts": [
    {
      "name": "New Model",
      "short_name": "New",
      "description": "Upload a new 3D model",
      "url": "/?action=new",
      "icons": [{ "src": "icons/new-96.png", "sizes": "96x96" }]
    },
    {
      "name": "Recent Models",
      "short_name": "Recent",
      "description": "View recent models",
      "url": "/?view=recent",
      "icons": [{ "src": "icons/recent-96.png", "sizes": "96x96" }]
    }
  ],
  "share_target": {
    "action": "/share",
    "method": "POST",
    "enctype": "multipart/form-data",
    "params": {
      "title": "title",
      "text": "text",
      "url": "url",
      "files": [
        {
          "name": "model",
          "accept": [
            ".glb",
            ".gltf",
            ".obj",
            ".fbx",
            ".stl",
            ".ply",
            ".3ds",
            ".dae"
          ]
        }
      ]
    }
  },
  "features": [
    "screen-wake-lock",
    "idle-detection",
    "file-handling"
  ],
  "file_handlers": [
    {
      "action": "/open",
      "name": "3D Models",
      "accept": {
        "model/gltf-binary": [".glb"],
        "model/gltf+json": [".gltf"],
        "model/obj": [".obj"],
        "model/fbx": [".fbx"],
        "model/stl": [".stl"],
        "model/ply": [".ply"],
        "model/3ds": [".3ds"],
        "model/collada+xml": [".dae"]
      }
    }
  ],
  "protocol_handlers": [
    {
      "protocol": "web+reviewmodel",
      "url": "/open?url=%s"
    }
  ]
}