-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
70 lines (70 loc) · 1.74 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
{
"id": "e192279e",
"name": "Artboard Plus",
"version": "1.1.0",
"summary": "Orginize Artboards",
"description": "Artboard tools to speed up your Adobe XD workflow. Rearrange artboards into grid, sort them by name or create an artboard around selection.",
"author": "Rodrigo Soares",
"keywords": ["utility", "productivity", "artboard", "automation"],
"languages": ["en"],
"helpUrl": "https://github.com/rodi01/Artboard-Plus-XD/blob/master/README.md",
"icons": [
{
"width": 24,
"height": 24,
"path": "images/icon_24.png"
},
{
"width": 48,
"height": 48,
"path": "images/icon_48.png"
}
],
"host": {
"app": "XD",
"minVersion": "13.0"
},
"uiEntryPoints": [
{
"type": "menu",
"label": "Artboard Plus",
"menuItems": [
{
"type": "menu",
"label": "Rearrange Artboards into Grid",
"commandId": "rearrangeArtboards"
},
{
"type": "menu",
"label": "Create Artboard Around Selection",
"commandId": "wrapSelection"
},
{
"type": "menu",
"label": "Sort Artboards by Name A-Z",
"commandId": "sortAZ"
},
{
"type": "menu",
"label": "Sort Artboards by Name Z-A",
"commandId": "sortZA"
},
{
"type": "menu",
"label": "Sort Artboards Left to Right, Top to Bottom",
"commandId": "sortXY"
},
{
"type": "menu",
"label": "Sort Artboards Top to Bottom, Left to Right",
"commandId": "sortYX"
},
{
"type": "menu",
"label": "Settings",
"commandId": "settings"
}
]
}
]
}