mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 10:55:06 -05:00
Add web app manifest
We'll need this to register protocol handlers.
This commit is contained in:
parent
c187eac3c8
commit
ca8649c506
2 changed files with 8 additions and 0 deletions
|
@ -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
7
manifest.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"name": "gamja IRC client",
|
||||
"short_name": "gamja",
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"scope": "."
|
||||
}
|
Loading…
Reference in a new issue