pwa
pwa(progressive web app)とは、windowsやandroidなどにブラウザ経由でインストールできるようにしたアプリです。offline動作可能にするには、service workerを登録し、リソースをcacheする必要があります。
webmanifest
displayは指定したモードに対応していない場合、fullscreen、standalone、minimal-ui、browserの順に代替されます。short_nameはnameが全部表示できない場合、使用される可能性があります。
code
<link rel='manifest' crossorigin='use-credentials' href='data:application/manifest+json;charset=utf-8,{
"display":"fullscreen"
,"short_name":null
,"name":null
,"icons":[{
"sizes":"any"
,"type":"image/svg+xml"
,"src":null
}]
,"start_url":null
}'>