manifest.json 2.2 KB

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