Skip to content
This repository has been archived by the owner on Jan 13, 2020. It is now read-only.

Implement all best practices for web app manifest #83

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Implement all best practices for web app manifest
  • Loading branch information
FluorescentHallucinogen authored Jan 24, 2019
commit a5ea87dedde84672756c3c62643129a7428a2110
28 changes: 22 additions & 6 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,37 @@
{
"name": "Apple Music",
"short_name": "Apple Music",
"description": "Apple Music PWA",
"lang": "en",
"categories": ["music"],
"theme_color": "#1e3264",
"background_color": "#212121",
"display": "browser",
"scope": "/",
"start_url": "/",
"display": "standalone",
"scope": "./",
"start_url": "./?utm_source=web_app_manifest",
"icons": [
{
"src": "/assets/icons/android-chrome-192x192.png",
"src": "./assets/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/assets/icons/android-chrome-512x512.png",
"src": "./assets/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"screenshots": [],
"prefer_related_applications": false,
"related_applications": [
{
"platform": "play",
"id": "com.apple.android.music",
"url": "https://play.google.com/store/apps/details?id=com.apple.android.music&referrer=utm_source%3Dweb_app_manifest"
},
{
"platform": "itunes",
"url": "https://itunes.apple.com/app/id1108187390"
}
]
}
}