-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
61 lines (61 loc) · 1.45 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
{
"name": "Variant Organiser",
"id": "1047796251364453654",
"api": "1.0.0",
"main": "code.js",
"editorType": ["figma"],
"documentAccess": "dynamic-page",
"networkAccess": {
"allowedDomains": ["none"]
},
"menu": [
{
"name": "Automatic",
"command": "organise"
},
{
"name": "Manual",
"command": "organise",
"parameterOnly": true,
"parameters": [
{
"name": "Columns",
"key": "column",
"description": "Select column property for primary grid",
"allowFreeform": false
},
{
"name": "Rows",
"key": "row",
"description": "Select row property for primary grid",
"allowFreeform": false
},
{
"name": "Horizontal groups",
"key": "hGroup",
"description": "Select property for grouping grids horizontally",
"allowFreeform": false,
"optional": true
}
]
},
{ "separator": true },
{
"name": "Preferences",
"command": "preferences",
"parameterOnly": true,
"parameters": [
{
"name": "Variant spacing",
"key": "spacing_subGrid",
"description": "Set the spacing between variants in pixels"
},
{
"name": "Block spacing",
"key": "spacing_groups",
"description": "Set the spacing between blocks in pixels"
}
]
}
]
}