From 10716d110131db82179012712ae0fbccb93e8b60 Mon Sep 17 00:00:00 2001 From: aikitoria <151776613+aikitoria@users.noreply.github.com> Date: Wed, 22 Nov 2023 19:18:00 +0100 Subject: [PATCH] Add manifest.json for Chrome Android --- public/index.html | 1 + public/manifest.json | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 public/manifest.json diff --git a/public/index.html b/public/index.html index 4da67bb0a..b5085c46f 100644 --- a/public/index.html +++ b/public/index.html @@ -8,6 +8,7 @@ + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 000000000..28df3de4c --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,30 @@ +{ + "name": "SillyTavern", + "short_name": "SillyTavern", + "start_url": "/", + "display": "standalone", + "theme_color": "#202124", + "background_color": "#202124", + "icons": [ + { + "src": "img/apple-icon-57x57.png", + "sizes": "57x57", + "type": "image/png" + }, + { + "src": "img/apple-icon-72x72.png", + "sizes": "72x72", + "type": "image/png" + }, + { + "src": "img/apple-icon-114x114.png", + "sizes": "114x114", + "type": "image/png" + }, + { + "src": "img/apple-icon-144x144.png", + "sizes": "144x144", + "type": "image/png" + } + ] +}