-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
67 lines (67 loc) · 1.66 KB
/
manifest.json
File metadata and controls
67 lines (67 loc) · 1.66 KB
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
{
"name": "QuickText",
"short_name": "QuickText",
"description": "Fast and simple text editor",
"version": "1.0.2",
"start_url": ".",
"scope": ".",
"display": "standalone",
"background_color": "#1f1f1f",
"theme_color": "#7376db",
"orientation": "any",
"icons": [
{
"src": "/icon/96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "/icon/128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "/icon/256x256.png",
"sizes": "256x256",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icon/256x256.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"file_handlers": [
{
"action": "./",
"name": "QuickText Document",
"accept": {
"text/plain": [".txt", ".text", ".log", ".conf", ".ini", ".cfg", ".env"],
"text/markdown": [".md", ".markdown"],
"text/html": [".html", ".htm", ".xhtml"],
"text/css": [".css", ".scss", ".less"],
"text/javascript": [".js", ".mjs", ".jsx"],
"application/typescript": [".ts", ".tsx"],
"application/json": [".json", ".map"],
"application/xml": [".xml"],
"text/csv": [".csv"],
"application/x-sh": [".sh", ".bash"]
},
"launch_type": "single-client"
}
],
"share_target": {
"action": "./",
"method": "GET",
"params": {
"title": "title",
"text": "text",
"url": "url"
},
"accept": ["text/plain", "text/markdown", "text/html", "text/*"]
},
"categories": ["utility", "textEditor"],
"prefer_related_applications": false
}