manifest.json 646 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "Snapdrop",
  3. "short_name": "Snapdrop",
  4. "icons": [{
  5. "src": "images/android-chrome-192x192.png",
  6. "sizes": "192x192",
  7. "type": "image/png",
  8. "purpose": "any maskable"
  9. },{
  10. "src": "images/favicon-96x96.png",
  11. "sizes": "96x96",
  12. "type": "image/png"
  13. }],
  14. "background_color": "#efefef",
  15. "start_url": "/",
  16. "display": "minimal-ui",
  17. "theme_color": "#3367d6",
  18. "share_target": {
  19. "method":"GET",
  20. "action": "/?share_target",
  21. "params": {
  22. "title": "title",
  23. "text": "text",
  24. "url": "url"
  25. }
  26. }
  27. }