2 files changed, 17 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Web/wwwroot/index.html b/MatrixRoomUtils.Web/wwwroot/index.html
index 3fc740a..7eef159 100644
--- a/MatrixRoomUtils.Web/wwwroot/index.html
+++ b/MatrixRoomUtils.Web/wwwroot/index.html
@@ -10,6 +10,7 @@
<link href="css/app.css" rel="stylesheet"/>
<link href="favicon.png" rel="icon" type="image/png"/>
<link href="MatrixRoomUtils.Web.styles.css" rel="stylesheet"/>
+ <link rel="manifest" href="mru.webmanifest" />
</head>
<body>
diff --git a/MatrixRoomUtils.Web/wwwroot/mru.webmanifest b/MatrixRoomUtils.Web/wwwroot/mru.webmanifest
new file mode 100644
index 0000000..ef1ee66
--- /dev/null
+++ b/MatrixRoomUtils.Web/wwwroot/mru.webmanifest
@@ -0,0 +1,16 @@
+{
+ "name": "Rory&::MatrixUtils",
+ "short_name": "MRU",
+ "description": "A collection of Matrix utilities.",
+ "icons": [
+ {
+ "src": "icon-192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ }
+ ],
+ "start_url": "/index.html",
+ "display": "fullscreen",
+ "theme_color": "#052767",
+ "background_color": "#3A0647"
+}
|