webアプリを好きなスタイルで、メニュー登録する方法

data:text/html;charset=UTF-8,<title>GoogleMaps</title><meta name="apple-mobile-web-app-capable" content="yes"><link rel="apple-touch-icon" href="http://example.com/icon.jpg"><script>if(window.navigator.standalone){location.href="http://maps.google.co.jp/";}else{document.write("ホーム画面に追加")}</script>

safari に以上のように打ち込んで、それをメニューに登録すればよい。
変更できる項目は以下の通り。

全画面表示(yes)

<meta name="apple-mobile-web-app-capable" content="yes" />

ステータスバーのカラー設定(default / black /black-translucent)

<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">

電話番号、メールアドレスのリンクの自動検出設定(telephone=no)

<meta name="format-detection" content="telephone=no" />

ホーム画面に表示されるアイコンの指定

<link rel="apple-touch-icon" href="icon.png" />