Add web app manifest

We'll need this to register protocol handlers.
This commit is contained in:
Simon Ser 2021-06-14 19:23:03 +02:00
parent c187eac3c8
commit ca8649c506
2 changed files with 8 additions and 0 deletions

View file

@ -5,6 +5,7 @@
<title>gamja IRC client</title>
<link rel="stylesheet" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="manifest.json">
</head>
<body>
<noscript>

7
manifest.json Normal file
View file

@ -0,0 +1,7 @@
{
"name": "gamja IRC client",
"short_name": "gamja",
"start_url": ".",
"display": "standalone",
"scope": "."
}