{
  "name": "PWA Capabilities Test App",
  "short_name": "PWA Test",
  "description": "A comprehensive test application showcasing all PWA capabilities",
  "start_url": "/",
  "display": "standalone",
  "display_override": ["window-controls-overlay", "minimal-ui"],
  "orientation": "portrait-primary",
  "theme_color": "#2196F3",
  "background_color": "#ffffff",
  "scope": "/",
  "lang": "en-US",
  "categories": ["developer", "utilities", "productivity"],
  "screenshots": [
    {
      "src": "./screenshots/desktop.png",
      "sizes": "1280x720",
      "type": "image/png",
      "form_factor": "wide",
      "label": "PWA Test App on Desktop"
    },
    {
      "src": "./screenshots/mobile.png",
      "sizes": "375x667",
      "type": "image/png",
      "form_factor": "narrow",
      "label": "PWA Test App on Mobile"
    }
  ],
  "icons": [
    {
      "src": "./icons/icon.svg",
      "sizes": "any",
      "type": "image/svg+xml"
    },
    {
      "src": "./icons/icon-192x192.svg",
      "sizes": "192x192",
      "type": "image/svg+xml"
    },
    {
      "src": "./icons/icon-512x512.svg",
      "sizes": "512x512",
      "type": "image/svg+xml",
      "purpose": "maskable any"
    }
  ],
  "shortcuts": [
    {
      "name": "Test Core PWA",
      "short_name": "Core Tests",
      "description": "Test core PWA functionality",
      "url": "/?test=core",
      "icons": [{ "src": "./icons/icon-192x192.svg", "sizes": "192x192" }]
    },
    {
      "name": "Test Device APIs",
      "short_name": "Device Tests",
      "description": "Test device integration APIs",
      "url": "/?test=device",
      "icons": [{ "src": "./icons/icon-192x192.svg", "sizes": "192x192" }]
    }
  ],
  "file_handlers": [
    {
      "action": "/handle-files",
      "accept": {
        "text/plain": [".txt"],
        "image/*": [".png", ".jpg", ".jpeg", ".gif", ".webp"],
        "application/json": [".json"]
      }
    }
  ],
  "protocol_handlers": [
    {
      "protocol": "web+pwatest",
      "url": "/handle-protocol?url=%s"
    }
  ],
  "share_target": {
    "action": "/share-target",
    "method": "POST",
    "enctype": "multipart/form-data",
    "params": {
      "title": "title",
      "text": "text",
      "url": "url",
      "files": [
        {
          "name": "files",
          "accept": ["image/*", "text/plain"]
        }
      ]
    }
  },
  "edge_side_panel": {
    "preferred_width": 400
  },
  "related_applications": [],
  "prefer_related_applications": false
}