-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathmanifest.json
127 lines (127 loc) · 2.93 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "Nudge and Resize",
"id": "496c8ba7",
"author": "Craig Dennis",
"version":"1.1.4",
"description":"Add menu items for nudging and resizing objects (8px by default) so they can be controlled by keyboard shortcuts.",
"icons":[
{
"width":96,
"height":96,
"path":"images/[email protected]"
}
],
"host":{
"app":"XD",
"minVersion":"13.0.0"
},
"uiEntryPoints":[
{
"type":"menu",
"label":"Nudge and Resize",
"menuItems": [
{
"type":"menu",
"label":"Large Nudge Up",
"commandId": "LargeNudgeUp",
"shortcut": {
"win": "Shift+alt+8"
}
},
{
"type":"menu",
"label":"Large Nudge Right",
"commandId": "LargeNudgeRight",
"shortcut": {
"win": "Shift+alt+6"
}
},
{
"type":"menu",
"label":"Large Nudge Down",
"commandId": "LargeNudgeDown",
"shortcut": {
"win": "Shift+alt+2"
}
},
{
"type":"menu",
"label":"Large Nudge Left",
"commandId": "LargeNudgeLeft",
"shortcut": {
"win": "Shift+alt+4"
}
},
{
"type":"menu",
"label":"Shrink Width",
"commandId": "ShrinkWidth",
"shortcut": {
"win": "Ctrl+alt+4"
}
},
{
"type":"menu",
"label":"Shrink Height",
"commandId": "ShrinkHeight",
"shortcut": {
"win": "Ctrl+alt+8"
}
},
{
"type":"menu",
"label":"Extend Width",
"commandId": "ExtendWidth",
"shortcut": {
"win": "Ctrl+alt+6"
}
},
{
"type":"menu",
"label":"Extend Height",
"commandId": "ExtendHeight",
"shortcut": {
"win": "Ctrl+alt+2"
}
},
{
"type":"menu",
"label":"Large Shrink Width",
"commandId": "LargeShrinkWidth",
"shortcut": {
"win": "Ctrl+alt+Shift+4"
}
},
{
"type":"menu",
"label":"Large Shrink Height",
"commandId": "LargeShrinkHeight",
"shortcut": {
"win": "Ctrl+alt+Shift+8"
}
},
{
"type":"menu",
"label":"Large Extend Width",
"commandId": "LargeExtendWidth",
"shortcut": {
"win": "Ctrl+alt+Shift+6"
}
},
{
"type":"menu",
"label":"Large Extend Height",
"commandId": "LargeExtendHeight",
"shortcut": {
"win": "Ctrl+alt+Shift+2"
}
},
{
"type": "menu",
"label": "Settings…",
"commandId": "ShowNudgeSettingsDialog"
}
]
}
]
}