Re: [w3c/manifest] Control which parts of the URLs belong to the app and which parts are not (#996)

It should be noted that the install and launch icons mentioned here are behaviours of Chromium and aren't part of any spec.

> #### My Goal
> index.html must show the install icon, but don't show the launch icon because it is a landing page(not the app itself). And app.html can show both install icon and launch icon. The launch icon should only appear for app files, don't appear for other files(like index.html and app.js).

It sounds like you want your manifest.json to contain:
```json
{
  "start_url": "app.html",
  "scope": "app.html"
}
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/996#issuecomment-902395992

Received on Friday, 20 August 2021 03:08:47 UTC