-
Notifications
You must be signed in to change notification settings - Fork 317
/
manifest.json
41 lines (41 loc) · 1.01 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
{
"name": "Codegen Sample",
"id": "180000000000000",
"api": "1.0.0",
"editorType": ["dev"],
"capabilities": ["codegen"],
"permissions": [],
"codegenLanguages": [
{ "label": "Everything", "value": "all" },
{ "label": "HTML", "value": "html" },
{ "label": "CSS", "value": "css" },
{ "label": "JS", "value": "js" },
{ "label": "JSON", "value": "json" },
{ "label": "Weather 🌦", "value": "weather" }
],
"codegenPreferences": [
{
"itemType": "unit",
"scaledUnit": "Sample Unit (su)",
"defaultScaleFactor": 0.7,
"default": false
},
{
"itemType": "select",
"propertyName": "example",
"label": "Yes or no",
"options": [
{ "label": "Yes", "value": "yes", "isDefault": true },
{ "label": "No", "value": "no" }
]
},
{
"itemType": "action",
"propertyName": "example",
"label": "Example action"
}
],
"main": "dist/code.js",
"ui": "dist/index.html",
"documentAccess": "dynamic-page"
}