// File: vill.au/pwa/manifest.json
{
  "name": "VILL.AU - Secure Messaging",
  "short_name": "VILL.AU",
  "description": "Highly secure end-to-end encrypted messaging platform",
  "start_url": "/",
  "display": "standalone",
  "background_color": "#006B5D",
  "theme_color": "#006B5D",
  "orientation": "portrait-primary",
  "scope": "/",
  "lang": "en",
  "dir": "ltr",
  "categories": ["social", "communication", "productivity"],
  "icons": [
    {
      "src": "/assets/images/icons/icon-72x72.png",
      "sizes": "72x72",
      "type": "image/png",
      "purpose": "maskable any"
    },
    {
      "src": "/assets/images/icons/icon-96x96.png",
      "sizes": "96x96",
      "type": "image/png",
      "purpose": "maskable any"
    },
    {
      "src": "/assets/images/icons/icon-128x128.png",
      "sizes": "128x128",
      "type": "image/png",
      "purpose": "maskable any"
    },
    {
      "src": "/assets/images/icons/icon-144x144.png",
      "sizes": "144x144",
      "type": "image/png",
      "purpose": "maskable any"
    },
    {
      "src": "/assets/images/icons/icon-152x152.png",
      "sizes": "152x152",
      "type": "image/png",
      "purpose": "maskable any"
    },
    {
      "src": "/assets/images/icons/icon-192x192.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "maskable any"
    },
    {
      "src": "/assets/images/icons/icon-384x384.png",
      "sizes": "384x384",
      "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "/assets/images/icons/icon-512x512.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any"
    }
  ],
  "shortcuts": [
    {
      "name": "New Message",
      "short_name": "Message",
      "description": "Start a new conversation",
      "url": "/pages/chat.php?action=new",
      "icons": [
        {
          "src": "/assets/images/icons/message-icon.png",
          "sizes": "96x96"
        }
      ]
    },
    {
      "name": "Groups",
      "short_name": "Groups",
      "description": "View your groups",
      "url": "/pages/groups.php",
      "icons": [
        {
          "src": "/assets/images/icons/group-icon.png",
          "sizes": "96x96"
        }
      ]
    }
  ],
  "screenshots": [
    {
      "src": "/assets/images/screenshots/desktop-chat.png",
      "sizes": "1280x720",
      "type": "image/png",
      "form_factor": "wide",
      "label": "VILL.AU Chat Interface"
    },
    {
      "src": "/assets/images/screenshots/mobile-chat.png",
      "sizes": "375x812",
      "type": "image/png",
      "form_factor": "narrow",
      "label": "VILL.AU Mobile Chat"
    }
  ],
  "share_target": {
    "action": "/pages/chat.php",
    "method": "POST",
    "enctype": "multipart/form-data",
    "params": {
      "title": "title",
      "text": "text",
      "url": "url",
      "files": [
        {
          "name": "file",
          "accept": ["image/*", "video/*", "audio/*"]
        }
      ]
    }
  },
  "protocol_handlers": [
    {
      "protocol": "web+villau",
      "url": "/pages/chat.php?action=open&data=%s"
    }
  ]
}