-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (42 loc) · 866 Bytes
/
manifest.json
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
{
"name": "tiny.electron",
"short_name": "tiny.electron",
"description": "A simple restricted-rich-text editor. Electron + TinyMCE.",
"start_url": "./",
"display": "standalone",
"lang": "en-US",
"theme_color": "#FFFFFF",
"background_color": "#FFFFFF",
"icons": [
{
"src": "./images/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./images/favicon-alt.png",
"sizes": "32x32",
"type": "image/png"
}
],
"file_handlers": [
{
"action": "/tiny.electron/",
"accept": {
"text/markdown": [".md", ".markdown"]
}
},
{
"action": "/tiny.electron/",
"accept": {
"text/plain": [".txt", ".text"]
}
},
{
"action": "/tiny.electron/",
"accept": {
"text/html": [".htm", ".html"]
}
}
]
}