manifest.json 484 B

123456789101112131415161718192021222324
  1. {
  2. "name": "JSON Visio",
  3. "short_name": "JSON Visio",
  4. "description": "Visualize your JSON data onto graphs seamlessly.",
  5. "theme_color": "#36393e",
  6. "background_color": "#36393e",
  7. "display": "standalone",
  8. "orientation": "landscape",
  9. "scope": "/",
  10. "start_url": "/editor",
  11. "icons": [
  12. {
  13. "src": "/192.png",
  14. "sizes": "192x192",
  15. "type": "image/png"
  16. },
  17. {
  18. "src": "/512.png",
  19. "sizes": "512x512",
  20. "type": "image/png"
  21. }
  22. ]
  23. }