manifest.json 498 B

12345678910111213141516171819202122
  1. {
  2. "id": "/grocery",
  3. "name": "Grocery Manager",
  4. "short_name": "Grocery",
  5. "description": "View trending price data and tracked product info",
  6. "start_url": "/grocery/trend",
  7. "theme_color": "firebrick",
  8. "background_color": "black",
  9. "display": "standalone",
  10. "icons": [
  11. {
  12. "src": "/grocery/static/favicon.svg",
  13. "sizes": "any",
  14. "purpose": "any"
  15. },
  16. {
  17. "src": "/grocery/static/favicon_square.svg",
  18. "sizes": "any",
  19. "purpose": "any"
  20. }
  21. ]
  22. }