-
Notifications
You must be signed in to change notification settings - Fork 194
New web app manifest features #2078
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
5becb62
Add a few manifest features
captainbrosset 6953195
Cleaned up manifest feature and added shortcuts
captainbrosset 88eb5fc
Update manifest.yml
captainbrosset 60d1d33
Update app-shortcuts.yml
captainbrosset 65b3df5
Update app-share-target.yml
captainbrosset bef5d5f
Update app-share-target.yml
captainbrosset d1466c5
Update app-protocol-handling.yml
captainbrosset 5bcaa34
Update app-protocol-handling.yml
captainbrosset 5d30ac0
Merge branch 'main' of github.com:web-platform-dx/web-features into m…
captainbrosset ee482ee
Merge branch 'manifest' of github.com:web-platform-dx/web-features in…
captainbrosset 31b4335
Addressed review comments
captainbrosset 4ede3e6
Merge branch 'main' of github.com:web-platform-dx/web-features into m…
captainbrosset 7e60c6f
Merge remote-tracking branch 'origin/main' into manifest
captainbrosset baf9fb8
Addressed review comments
captainbrosset 47a8a7d
Prettier formatting
captainbrosset fc36248
Merge branch 'main' of github.com:web-platform-dx/web-features into m…
captainbrosset 837dc8f
Rename
captainbrosset cd46b2e
re-dist
captainbrosset File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| name: File handlers | ||
| description: The `file_handlers` web app manifest member registers an installed web app as a handler for files with specific file extensions or MIME types. | ||
| spec: https://wicg.github.io/manifest-incubations/#file_handlers-member | ||
| group: progressive-web-app | ||
| compat_features: | ||
| - html.manifest.file_handlers | ||
| - api.LaunchParams.files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Generated from: app-file-handlers.yml | ||
| # Do not edit this file by hand. Edit the source file instead! | ||
|
|
||
| status: | ||
| baseline: false | ||
| support: | ||
| chrome: "102" | ||
| edge: "102" | ||
| compat_features: | ||
| - api.LaunchParams.files | ||
| - html.manifest.file_handlers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| name: Protocol handlers | ||
| description: The `protocol_handlers` web app manifest member registers an installed web app as a handler for a specific protocol. When a user follows a link with the specified protocol, the installed app opens the link. | ||
| spec: https://wicg.github.io/manifest-incubations/#protocol_handlers-member | ||
| group: progressive-web-app | ||
| compat_features: | ||
| - html.manifest.protocol_handlers | ||
| - html.manifest.protocol_handlers.protocol | ||
| - html.manifest.protocol_handlers.url |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Generated from: app-protocol-handlers.yml | ||
| # Do not edit this file by hand. Edit the source file instead! | ||
|
|
||
| status: | ||
| baseline: false | ||
| support: | ||
| chrome: "96" | ||
| chrome_android: "96" | ||
| edge: "96" | ||
| compat_features: | ||
| - html.manifest.protocol_handlers | ||
| - html.manifest.protocol_handlers.protocol | ||
| - html.manifest.protocol_handlers.url |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| name: Share targets | ||
| description: The `share_target` web app manifest member registers an installed web app as a handler for shared content. When a user shares content by using the device share dialog, the installed app can be listed as an option for handling the shared content. | ||
| spec: https://w3c.github.io/web-share-target/#share_target-member | ||
| group: progressive-web-app | ||
| compat_features: | ||
| - html.manifest.share_target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Generated from: app-share-targets.yml | ||
| # Do not edit this file by hand. Edit the source file instead! | ||
|
|
||
| status: | ||
| baseline: false | ||
| support: | ||
| chrome: "89" | ||
| chrome_android: "76" | ||
| edge: "89" | ||
| compat_features: | ||
| - html.manifest.share_target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| name: Application shortcuts | ||
| description: The `shortcuts` web app manifest member registers common actions of an installed web app with the device. The device can present these actions to the user in contextually appropriate locations, such as jump lists on Windows or the app launcher on Android. | ||
| spec: https://w3c.github.io/manifest/#shortcuts-member | ||
| group: progressive-web-app | ||
| compat_features: | ||
| - html.manifest.shortcuts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # Generated from: app-shortcuts.yml | ||
| # Do not edit this file by hand. Edit the source file instead! | ||
|
|
||
| status: | ||
| baseline: false | ||
| support: | ||
| chrome: "96" | ||
| chrome_android: "84" | ||
| edge: "96" | ||
| safari: "17.4" | ||
| compat_features: | ||
| - html.manifest.shortcuts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| name: Web app manifest | ||
| description: A web app manifest file provides metadata about the site. The browser can use the metadata to install the site as a standalone application on the user's device. The metadata usually includes the app's name, icon, description, and ways in which the app wishes to integrate with the device. | ||
| spec: https://w3c.github.io/manifest/ | ||
| group: progressive-web-app | ||
| status: | ||
| compute_from: | ||
| - html.elements.link.rel.manifest | ||
| - html.manifest.display | ||
| - html.manifest.name | ||
| - html.manifest.short_name | ||
| - html.manifest.start_url | ||
| - html.manifest.icons | ||
| - html.manifest.theme_color | ||
| - html.manifest.scope | ||
| compat_features: | ||
| - html.elements.link.rel.manifest | ||
|
|
||
| # While not all display modes are supported in all browsers, the display member itself | ||
| # is supported, and very important on Safari iOS. On Safari iOS, using the default | ||
| # display mode is not enough to really "install" an app to the home screen. For example | ||
| # notifications won't work. | ||
| - html.manifest.display | ||
|
|
||
| - html.manifest.name | ||
| - html.manifest.short_name | ||
| - html.manifest.start_url | ||
| - html.manifest.icons | ||
| - html.manifest.theme_color | ||
| - html.manifest.scope | ||
|
|
||
| # Missing in Firefox for Android. Not considered a developer feature yet. | ||
| # Ignored from compute_from for now. | ||
| - html.manifest.id | ||
|
|
||
| # Missing in Safari. While interesting separate features we can create | ||
| # them later. | ||
| # Ignored from compute_from for now. | ||
| - html.manifest.background_color | ||
| - html.manifest.orientation | ||
|
|
||
| # Description is only used in Chromium in the PWA rich install dialog. | ||
| # Ignored from compute_from for now. | ||
| - html.manifest.description | ||
|
|
||
| # Used to install a web payment service worker on the fly, which is | ||
| # a separate feature. | ||
| # Ignored from compute_from for now. | ||
| - html.manifest.serviceworker | ||
| - html.manifest.serviceworker.scope | ||
| - html.manifest.serviceworker.src | ||
| - html.manifest.serviceworker.use_cache | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,116 @@ | ||
| # Generated from: manifest.yml | ||
| # Do not edit this file by hand. Edit the source file instead! | ||
|
|
||
| status: | ||
| baseline: false | ||
| support: | ||
| chrome: "53" | ||
| chrome_android: "53" | ||
| edge: "79" | ||
| firefox_android: "79" | ||
| safari: "17" | ||
| safari_ios: "15.4" | ||
| compat_features: | ||
| # baseline: false | ||
| # support: | ||
| # chrome: "39" | ||
| # chrome_android: "39" | ||
| # edge: "79" | ||
| # firefox_android: "47" | ||
| # safari: "17" | ||
| # safari_ios: "11.3" | ||
| - html.manifest.display | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "39" | ||
| # chrome_android: "39" | ||
| # edge: "79" | ||
| # firefox_android: "58" | ||
| # safari: "17" | ||
| # safari_ios: "11.3" | ||
| - html.elements.link.rel.manifest | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "39" | ||
| # chrome_android: "39" | ||
| # edge: "79" | ||
| # firefox_android: "79" | ||
| # safari: "17" | ||
| # safari_ios: "11.3" | ||
| - html.manifest.name | ||
| - html.manifest.short_name | ||
| - html.manifest.start_url | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "39" | ||
| # chrome_android: "39" | ||
| # edge: "79" | ||
| # firefox_android: "79" | ||
| # safari: "17" | ||
| # safari_ios: "15.4" | ||
| - html.manifest.icons | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "46" | ||
| # chrome_android: "46" | ||
| # edge: "79" | ||
| # firefox_android: "79" | ||
| # safari: "17" | ||
| # safari_ios: "15" | ||
| - html.manifest.theme_color | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "53" | ||
| # chrome_android: "53" | ||
| # edge: "79" | ||
| # firefox_android: "79" | ||
| # safari: "17" | ||
| # safari_ios: "11.3" | ||
| - html.manifest.scope | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "96" | ||
| # chrome_android: "96" | ||
| # edge: "96" | ||
| # safari: "17" | ||
| # safari_ios: "16.4" | ||
| - html.manifest.id | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "39" | ||
| # chrome_android: "39" | ||
| # edge: "79" | ||
| # firefox_android: "79" | ||
| - html.manifest.orientation | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "46" | ||
| # chrome_android: "46" | ||
| # edge: "79" | ||
| # firefox_android: "79" | ||
| - html.manifest.background_color | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "70" | ||
| # chrome_android: "70" | ||
| # edge: "79" | ||
| - html.manifest.serviceworker | ||
| - html.manifest.serviceworker.scope | ||
| - html.manifest.serviceworker.src | ||
| - html.manifest.serviceworker.use_cache | ||
|
|
||
| # baseline: false | ||
| # support: | ||
| # chrome: "88" | ||
| # chrome_android: "88" | ||
| # edge: "88" | ||
| - html.manifest.description |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.