-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
25 lines (25 loc) · 924 Bytes
/
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
{
"name": "Android Resources Export",
"id": "735452896889481850",
"api": "1.0.0",
"main": "dist/code.js",
"ui": "dist/ui.html",
"editorType": ["figma"],
"menu": [
{"name": "New PNG", "command": "new-png"},
{"name": "Export PNG", "command": "export-png"},
{"separator": true},
{"name": "New Nine-patch", "command": "new-nine-patch"},
{"name": "Export Nine-patch", "command": "export-nine-patch"},
{"separator": true},
{"name": "New App Icon", "command": "new-app-icon"},
{"name": "Export App Icon", "command": "export-app-icon"},
{"separator": true},
{"name": "Settings", "command": "settings"}
],
"relaunchButtons": [
{"command": "export-png", "name": "Export PNG Assets", "multipleSelection": true},
{"command": "export-nine-patch", "name": "Export Nine-Patch", "multipleSelection": true},
{"command": "export-app-icon", "name": "Export App Icon"}
]
}