manifest.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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": "any maskable"
  39. }
  40. ],
  41. "categories": ["utilities", "productivity"],
  42. "shortcuts": [
  43. {
  44. "name": "Printers",
  45. "short_name": "Printers",
  46. "description": "View your printers",
  47. "url": "/",
  48. "icons": [{ "src": "/img/android-chrome-192x192.png", "sizes": "192x192" }]
  49. },
  50. {
  51. "name": "Archives",
  52. "short_name": "Archives",
  53. "description": "View print archives",
  54. "url": "/archives",
  55. "icons": [{ "src": "/img/android-chrome-192x192.png", "sizes": "192x192" }]
  56. },
  57. {
  58. "name": "Queue",
  59. "short_name": "Queue",
  60. "description": "View print queue",
  61. "url": "/queue",
  62. "icons": [{ "src": "/img/android-chrome-192x192.png", "sizes": "192x192" }]
  63. }
  64. ]
  65. }