forked from una/CSSgram
-
Notifications
You must be signed in to change notification settings - Fork 8
/
install.json
119 lines (119 loc) · 3.1 KB
/
install.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
{
"resources": {
"head": [
{
"type": "style",
"src": "./node_modules/cssgram/source/css/cssgram.css"
},
{
"type": "script",
"src": "./source/app.js"
}
]
},
"preview": {
"handlers": [
{
"options": ["*"],
"execute": "INSTALL_SCOPE.setOptions(INSTALL_OPTIONS)"
}
]
},
"options": {
"properties": {
"regions": {
"title": "Sets of images to filter",
"order": 1,
"type": "array",
"items": {
"notitle": true,
"type": "object",
"properties": {
"location": {
"order": 1,
"title": "Location",
"description": "Select the part of your page which contains the images you’d like to filter.",
"type": "string",
"format": "selector"
},
"pages": {
"order": 2,
"title": "Pages",
"description": "Which pages should use this filter?",
"type": "object",
"format": "page"
},
"filter": {
"order": 3,
"title": "Filter",
"type": "string",
"enum": [
"aden",
"brannan",
"brooklyn",
"clarendon",
"earlybird",
"gingham",
"hudson",
"inkwell",
"kelvin",
"lark",
"lofi",
"maven",
"mayfair",
"moon",
"nashville",
"perpetua",
"reyes",
"rise",
"slumber",
"stinson",
"toaster",
"valencia",
"walden",
"willow",
"xpro2",
"_1977"
],
"enumNames": {
"aden": "Aden",
"brannan": "Brannan",
"brooklyn": "Brooklyn",
"clarendon": "Clarendon",
"earlybird": "Earlybird",
"gingham": "Gingham",
"hudson": "Hudson",
"inkwell": "Inkwell",
"kelvin": "Kelvin",
"lark": "Lark",
"lofi": "Lo-fi",
"maven": "Maven",
"mayfair": "Mayfair",
"moon": "Moon",
"nashville": "Nashville",
"perpetua": "Perpetua",
"reyes": "Reyes",
"rise": "Rise",
"slumber": "Slumber",
"stinson": "Stinson",
"toaster": "Toaster",
"valencia": "Valencia",
"walden": "Walden",
"willow": "Willow",
"xpro2": "X-Pro II",
"_1977": "1977"
},
"default": "aden"
}
}
},
"default": [
{
"location": "body",
"filter": "walden"
}
]
}
}
}
}