manifest.json 652 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "short_name": "Excalidraw",
  3. "name": "Excalidraw",
  4. "description": "Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them.",
  5. "icons": [
  6. {
  7. "src": "logo-180x180.png",
  8. "sizes": "180x180",
  9. "type": "image/png"
  10. },
  11. {
  12. "src": "apple-touch-icon.png",
  13. "type": "image/png",
  14. "sizes": "256x256"
  15. }
  16. ],
  17. "start_url": "/",
  18. "display": "standalone",
  19. "theme_color": "#000000",
  20. "background_color": "#ffffff",
  21. "file_handlers": [
  22. {
  23. "action": "/",
  24. "accept": {
  25. "application/vnd.excalidraw+json": [".excalidraw"]
  26. }
  27. }
  28. ]
  29. }