Create manifest.json
Browse files- manifest.json +29 -0
manifest.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "Llama Chat - AI Assistant",
|
3 |
+
"short_name": "Llama Chat",
|
4 |
+
"description": "AI-powered chat assistant with Llama-3.3-70B",
|
5 |
+
"start_url": "/",
|
6 |
+
"display": "standalone",
|
7 |
+
"background_color": "#ffffff",
|
8 |
+
"theme_color": "#2563eb",
|
9 |
+
"orientation": "portrait-primary",
|
10 |
+
"icons": [
|
11 |
+
{
|
12 |
+
"src": "https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/72x72/1f999.png",
|
13 |
+
"sizes": "72x72",
|
14 |
+
"type": "image/png"
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"src": "https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/72x72/1f999.png",
|
18 |
+
"sizes": "192x192",
|
19 |
+
"type": "image/png"
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"src": "https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/72x72/1f999.png",
|
23 |
+
"sizes": "512x512",
|
24 |
+
"type": "image/png"
|
25 |
+
}
|
26 |
+
],
|
27 |
+
"categories": ["productivity", "utilities"],
|
28 |
+
"lang": "en"
|
29 |
+
}
|