manifest.json 674 B

12345678910111213141516171819202122232425262728
  1. {
  2. "short_name": "SimpleServer",
  3. "name": "Simple Single Page Server Setup",
  4. "icons": [
  5. {
  6. "src": "android-chrome-192x192.png",
  7. "type": "image/png",
  8. "sizes": "192x192"
  9. },
  10. {
  11. "src": "android-chrome-512x512.png",
  12. "type": "image/png",
  13. "sizes": "512x512"
  14. },
  15. {
  16. "src": "apple-touch-icon.png",
  17. "type": "image/png",
  18. "sizes": "180x180",
  19. "purpose": "any maskable"
  20. }
  21. ],
  22. "start_url": "/?source=pwa",
  23. "background_color": "#607d8b",
  24. "display": "standalone",
  25. "scope": "/",
  26. "prefer_related_applications": false,
  27. "theme_color": "white"
  28. }