manifest.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "share_target": {
  30. "action": "/web-share-target",
  31. "method": "POST",
  32. "enctype": "multipart/form-data",
  33. "params": {
  34. "files": [
  35. {
  36. "name": "file",
  37. "accept": ["application/vnd.excalidraw+json", "application/json", ".excalidraw"]
  38. }
  39. ]
  40. }
  41. },
  42. "screenshots": [
  43. {
  44. "src": "/screenshots/virtual-whiteboard.png",
  45. "type": "image/png",
  46. "sizes": "462x945"
  47. },
  48. {
  49. "src": "/screenshots/wireframe.png",
  50. "type": "image/png",
  51. "sizes": "462x945"
  52. },
  53. {
  54. "src": "/screenshots/illustration.png",
  55. "type": "image/png",
  56. "sizes": "462x945"
  57. },
  58. {
  59. "src": "/screenshots/shapes.png",
  60. "type": "image/png",
  61. "sizes": "462x945"
  62. },
  63. {
  64. "src": "/screenshots/collaboration.png",
  65. "type": "image/png",
  66. "sizes": "462x945"
  67. },
  68. {
  69. "src": "/screenshots/export.png",
  70. "type": "image/png",
  71. "sizes": "462x945"
  72. }
  73. ]
  74. }