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. "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. "screenshots": [
  44. {
  45. "src": "/screenshots/virtual-whiteboard.png",
  46. "type": "image/png",
  47. "sizes": "462x945"
  48. },
  49. {
  50. "src": "/screenshots/wireframe.png",
  51. "type": "image/png",
  52. "sizes": "462x945"
  53. },
  54. {
  55. "src": "/screenshots/illustration.png",
  56. "type": "image/png",
  57. "sizes": "462x945"
  58. },
  59. {
  60. "src": "/screenshots/shapes.png",
  61. "type": "image/png",
  62. "sizes": "462x945"
  63. },
  64. {
  65. "src": "/screenshots/collaboration.png",
  66. "type": "image/png",
  67. "sizes": "462x945"
  68. },
  69. {
  70. "src": "/screenshots/export.png",
  71. "type": "image/png",
  72. "sizes": "462x945"
  73. }
  74. ]
  75. }