-
Notifications
You must be signed in to change notification settings - Fork 12.2k
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
Add support for Chrome Mobile web apps #1441
Conversation
As it says in the section "Icon" in the link you provided, Chrome still looks through the "old" link tags while shortcut icon is preferred. For the time being I'd add this to the docs and add it in HTML5 Boilerplate as soon as other browsers support it too. |
It is unlikely that other browsers will support as we plan to diverge from the apple-* support pretty soon. The use of apple-* is more of a bootstrap feature to get users used to the idea of installing to the home-screen given that adoption of apple-* is higher due to it being out for 4-5 years. |
Instead of: <link rel="shortcut icon" sizes="1024x1024" href="nice-highres.png"> The markup should really be: <link rel="icon" sizes="1024x1024" href="nice-highres.png"> Both work the same way, and |
Can we throw together a Pull Request for the changes of the docs for this one? |
Related to this discussion:
(from: https://twitter.com/ChromiumDev/status/402821347442561024) |
The syntax will remain the same there is just an implementation bug.
|
@PaulKinlan yes I know, I just wanted to have the link to the bug in here, in case we ever need to reference it. |
"Add to Homescreen" feature in Chrome Mobile Closes #1441.
I've added a note to the docs in the PR above. |
"Add to Homescreen" feature in Chrome Mobile Closes h5bp#1441.
"Add to Homescreen" feature in Chrome Mobile Closes #1441.
As of Chrome Mobile 31, Google have added Install to Homescreen. This adds a new meta tag
<meta name=”mobile-web-app-capable” content=”yes”>
, and(apple-touch-*)
is being depreciated in favour of<link rel=”shortcut icon” sizes=”1024x1024” href=”nice-highres.png”>