manifest.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "id": "/",
  3. "name": "Bambuddy",
  4. "short_name": "Bambuddy",
  5. "description": "Monitor and manage your Bambu Lab 3D printers",
  6. "start_url": "/",
  7. "display": "standalone",
  8. "background_color": "#1a1a1a",
  9. "theme_color": "#00ae42",
  10. "orientation": "any",
  11. "scope": "/",
  12. "icons": [
  13. {
  14. "src": "/img/favicon-16x16.png",
  15. "sizes": "16x16",
  16. "type": "image/png"
  17. },
  18. {
  19. "src": "/img/favicon-32x32.png",
  20. "sizes": "32x32",
  21. "type": "image/png"
  22. },
  23. {
  24. "src": "/img/android-chrome-192x192.png",
  25. "sizes": "192x192",
  26. "type": "image/png",
  27. "purpose": "any"
  28. },
  29. {
  30. "src": "/img/android-chrome-512x512.png",
  31. "sizes": "512x512",
  32. "type": "image/png",
  33. "purpose": "any"
  34. },
  35. {
  36. "src": "/img/android-chrome-192x192.png",
  37. "sizes": "192x192",
  38. "type": "image/png",
  39. "purpose": "maskable"
  40. },
  41. {
  42. "src": "/img/android-chrome-512x512.png",
  43. "sizes": "512x512",
  44. "type": "image/png",
  45. "purpose": "maskable"
  46. }
  47. ],
  48. "screenshots": [
  49. {
  50. "src": "/img/screenshot-mobile.png",
  51. "sizes": "1080x1920",
  52. "type": "image/png",
  53. "form_factor": "narrow",
  54. "label": "Bambuddy on mobile"
  55. },
  56. {
  57. "src": "/img/screenshot-desktop.png",
  58. "sizes": "1920x1080",
  59. "type": "image/png",
  60. "form_factor": "wide",
  61. "label": "Bambuddy on desktop"
  62. }
  63. ],
  64. "categories": ["utilities", "productivity"],
  65. "shortcuts": [
  66. {
  67. "name": "Printers",
  68. "short_name": "Printers",
  69. "description": "View your printers",
  70. "url": "/",
  71. "icons": [{ "src": "/img/android-chrome-192x192.png", "sizes": "192x192" }]
  72. },
  73. {
  74. "name": "Archives",
  75. "short_name": "Archives",
  76. "description": "View print archives",
  77. "url": "/archives",
  78. "icons": [{ "src": "/img/android-chrome-192x192.png", "sizes": "192x192" }]
  79. },
  80. {
  81. "name": "Queue",
  82. "short_name": "Queue",
  83. "description": "View print queue",
  84. "url": "/queue",
  85. "icons": [{ "src": "/img/android-chrome-192x192.png", "sizes": "192x192" }]
  86. },
  87. {
  88. "name": "Projects",
  89. "short_name": "Projects",
  90. "description": "View print projects",
  91. "url": "/projects",
  92. "icons": [{ "src": "/img/android-chrome-192x192.png", "sizes": "192x192" }]
  93. }
  94. ]
  95. }