-
Notifications
You must be signed in to change notification settings - Fork 192
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
+241
−0
Merged
Changes from 2 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,11 @@ | ||
| name: File handling | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 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 | ||
| - api.LaunchParams.files | ||
| - api.LaunchQueue | ||
| - api.LaunchQueue.setConsumer | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - api.Window.launchQueue | ||
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,15 @@ | ||
| # Generated from: app-file-handling.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 | ||
| - api.LaunchParams.files | ||
| - api.LaunchQueue | ||
| - api.LaunchQueue.setConsumer | ||
| - api.Window.launchQueue | ||
| - 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 handling | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| description: The `protocol_handlers` web app manifest member registers an installed web app as a handler for a specific protocol. When a user clicks on a link with the specified protocol, the installed app handles the link. | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 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-handling.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 |
captainbrosset marked this conversation as resolved.
Show resolved
Hide resolved
|
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: Shared content handling | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 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 operating system share dialog, the installed app can be listed as an option for handling the shared content. | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 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-target.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 operating system. The operating system can then present these actions to the user in contextually appropriate locations, such as jump lists on Windows or the app launcher on Android. | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 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,21 @@ | ||
| 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 operating system. | ||
captainbrosset marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| spec: https://w3c.github.io/manifest/ | ||
| group: progressive-web-app | ||
| compat_features: | ||
| - html.elements.link.rel.manifest | ||
| - html.manifest.id | ||
| - html.manifest.start_url | ||
| - html.manifest.scope | ||
| - html.manifest.name | ||
| - html.manifest.short_name | ||
| - html.manifest.description | ||
| - html.manifest.display | ||
| - html.manifest.background_color | ||
| - html.manifest.theme_color | ||
| - html.manifest.icons | ||
| - html.manifest.orientation | ||
| - 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,110 @@ | ||
| # Generated from: manifest.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: | ||
| # 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 | ||
captainbrosset marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # 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: "39" | ||
| # chrome_android: "39" | ||
| # edge: "79" | ||
| # firefox_android: "58" | ||
| # safari_ios: "11.3" | ||
| - html.elements.link.rel.manifest | ||
|
|
||
| # 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: "47" | ||
| - html.manifest.display | ||
|
|
||
| # 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.