manifest.json 503 B

123456789101112131415161718192021222324
  1. {
  2. "name": "myApp",
  3. "short_name": "myApp",
  4. "description": "Description of your app from template",
  5. "start_url": "index.html",
  6. "scope": "index.html",
  7. "icons": [
  8. {
  9. "src": "img/logo.png",
  10. "sizes": "192x192",
  11. "type": "image/png"
  12. },
  13. {
  14. "src": "img/splash.png",
  15. "sizes": "512x512",
  16. "type": "image/png"
  17. }
  18. ],
  19. "default_locale": "en",
  20. "display": "standalone",
  21. "background_color": "#FFF",
  22. "theme_color": "#000",
  23. "orientation": "landscape"
  24. }