Web Share Target 実装(のためにPWA対応)

This commit is contained in:
unarist
2019-02-16 22:52:27 +09:00
parent b961956b63
commit c229947080
3 changed files with 35 additions and 0 deletions

30
public/manifest.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "Tissue",
"short_name": "Tissue",
"description": "気持ちよくティッシュを使った、そのあとの感想戦。",
"display": "minimal-ui",
"start_url": "/",
"share_target": {
"action": "/checkin",
"method": "GET",
"enctype": "application/x-www-form-urlencoded",
"url_template": "/checkin?link={url}",
"params": {
"title": "",
"text": "link",
"url": "link"
}
},
"icons": [
{
"src": "apple-touch-icon.png",
"type": "image/png",
"sizes": "180x180"
},
{
"src": "chrome-touch-icon-192x192.png",
"type": "image/png",
"sizes": "192x192"
}
]
}

1
public/sw.js vendored Normal file
View File

@@ -0,0 +1 @@
self.addEventListener('fetch', function() {});