manifest.json 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "capture_links": "new_client",
  30. "share_target": {
  31. "action": "/web-share-target",
  32. "method": "POST",
  33. "enctype": "multipart/form-data",
  34. "params": {
  35. "files": [
  36. {
  37. "name": "file",
  38. "accept": ["application/vnd.excalidraw+json", "application/json", ".excalidraw"]
  39. }
  40. ]
  41. }
  42. }
  43. }