forked from TelegramWeb/web.telegram.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.webapp
89 lines (89 loc) · 2.19 KB
/
manifest.webapp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "Telegram",
"description": "Telegram Web App.\nMore info & source code here: https://github.com/zhukov/webogram",
"version": "0.7.0",
"type": "privileged",
"launch_path": "/index.html",
"developer": {
"name": "Igor Zhukov",
"url": "https://github.com/zhukov"
},
"installs_allowed_from": [
"*"
],
"messages": [{
"push": "/index.html"
}, {
"push-register": "/index.html"
}, {
"notification": "/index.html"
}],
"permissions": {
"desktop-notification": {
"description": "Required to show new message notifications"
},
"contacts": {
"description": "Required to import phonebook contacts",
"access": "readonly"
},
"push": {
"description": "Required for notifications"
},
"device-storage:music": {
"description": "Required for voice notes download",
"access": "createonly"
},
"device-storage:pictures": {
"description": "Required for photos download",
"access": "createonly"
},
"device-storage:sdcard": {
"description": "Required for documents download",
"access": "createonly"
},
"device-storage:videos": {
"description": "Required for videos download",
"access": "createonly"
},
"audio-capture" : {
"description" : "Required to record voice messages"
}
},
"activities": {
"share": {
"href": "/index.html",
"disposition": "window",
"filters": {
"type": ["image/*","audio/*","video/*", "url"],
"url": {
"pattern": "https?:.{1,16384}",
"regexp": "^https?:"
}
},
"returnValue": false
},
"view": {
"href": "/index.html",
"disposition": "window",
"filters": {
"type": "url",
"url": {
"required": true,
"pattern": "tg:.{1,16384}",
"regexp": "^tg:"
}
},
"returnValue": false
}
},
"orientation": "portrait-primary",
"icons": {
"16": "/img/icons/icon16.png",
"32": "/img/icons/icon32.png",
"60": "/img/icons/icon60.png",
"64": "/img/icons/icon64.png",
"90": "/img/icons/icon90.png",
"120": "/img/icons/icon120.png",
"128": "/img/icons/icon128.png"
}
}