manifest.json 492 B

12345678910111213141516171819202122
  1. {
  2. "name": "File Manager",
  3. "short_name": "File Manager",
  4. "icons": [{
  5. "src": "img/pwa/128.png",
  6. "sizes": "128x128",
  7. "type": "image/png"
  8. }, {
  9. "src": "img/pwa/192.png",
  10. "sizes": "192x192",
  11. "type": "image/png"
  12. }, {
  13. "src": "img/pwa/256.png",
  14. "sizes": "256x256",
  15. "type": "image/png"
  16. }],
  17. "start_url": "file_explorer.html",
  18. "display": "standalone",
  19. "scope": "./",
  20. "background_color": "#f7f7f7",
  21. "theme_color": "#242330"
  22. }