From e9c69615b748b1bad8830b4ac7a25029b2e2fe6e Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Tue, 18 Jul 2023 10:29:05 +0200 Subject: [PATCH 1/2] added: share target in manifest --- manifest.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 9436842..96522b3 100644 --- a/manifest.json +++ b/manifest.json @@ -1,4 +1,14 @@ { + "share_target": + { + "action": "index.html", + "params": + { + "title": "name", + "text": "description", + "url": "link" + } + }, "name": "notes", "start_url": ".", "display": "standalone", @@ -19,4 +29,5 @@ "sizes": "512x512" } ] -} \ No newline at end of file +} + From 71de70752ad08e4fbccbac011764fea99b282cea Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Fri, 1 Sep 2023 10:09:32 +0200 Subject: [PATCH 2/2] changed: manifest for sharing --- manifest.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 96522b3..a2789de 100644 --- a/manifest.json +++ b/manifest.json @@ -1,13 +1,15 @@ { "share_target": { - "action": "index.html", + "action": "/index.html", "params": { "title": "name", "text": "description", "url": "link" - } + }, + "method": "GET", + "enctype": "application/x-www-form-urlencoded" }, "name": "notes", "start_url": ".",