-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
46 lines (46 loc) · 1.16 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
{
"name": "Code Snippet Editor",
"id": "1311777988952403297",
"api": "1.0.0",
"editorType": ["dev", "figma"],
"capabilities": ["codegen", "vscode"],
"permissions": [],
"codegenLanguages": [{ "label": "Snippets", "value": "snippets" }],
"codegenPreferences": [
{
"itemType": "action",
"propertyName": "editor",
"label": "Open Editor"
},
{
"itemType": "action",
"propertyName": "templates",
"label": "Open Global Templates Editor"
},
{
"itemType": "select",
"propertyName": "defaultSnippet",
"label": "Default snippet",
"options": [
{ "label": "Message", "value": "message", "isDefault": true },
{ "label": "Empty", "value": "empty" }
]
},
{
"itemType": "select",
"propertyName": "detailsMode",
"label": "Details mode",
"options": [
{ "label": "On", "value": "on" },
{ "label": "Off", "value": "off", "isDefault": true }
]
}
],
"main": "code.js",
"ui": {
"bulk": "ui/bulk.html",
"editor": "ui/editor.html",
"templates": "ui/templates.html"
},
"networkAccess": { "allowedDomains": ["none"] }
}