-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
73 lines (73 loc) · 1.62 KB
/
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
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
{
"summary": "Randomly color objects!",
"website": "https://alongruss.com",
"keywords": [
"random",
"fill",
"color",
"group",
"objects"
],
"languages": [
"en"
],
"author": "Alon Gruss",
"description": "Randomly color objects!",
"helpUrl": "[email protected]",
"main": "main.js",
"icons": [
{
"path": "images/pluginIcon1.png",
"width": 48,
"height": 48
},
{
"path": "images/pluginIcon2.png",
"width": 96,
"height": 96
},
{
"path": "images/pluginIcon3.png",
"width": 144,
"height": 144
},
{
"path": "images/pluginIcon4.png",
"width": 192,
"height": 192
}
],
"version": "1.0.1",
"releaseNotes": "Ready for first publish",
"name": "Random Colors by Alon Gruss",
"host": {
"app": "XD",
"minVersion": "13.0"
},
"id": "62176fc8",
"uiEntryPoints": [
{
"label": "Random Colors by Alon Gruss",
"type": "menu",
"menuItems": [
{
"label": "Quick random color selection",
"type": "menu",
"commandId": "randomColorsCommand",
"shortcut": { "mac": "Cmd+Shift+1", "win": "Ctrl+Shift+1" }
},{
"label": "Random color selection",
"type": "menu",
"commandId": "randomColorsOptionsCommand",
"shortcut": { "mac": "Cmd+Shift+2", "win": "Ctrl+Shift+2" }
},
{
"label": "About Random Colors",
"type": "menu",
"commandId": "showAbout",
"shortcut": { "mac": "Cmd+Shift+3", "win": "Ctrl+Shift+3" }
}
]
}
]
}