-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathextension.json
More file actions
46 lines (46 loc) · 986 Bytes
/
extension.json
File metadata and controls
46 lines (46 loc) · 986 Bytes
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": "pcb-label-maker",
"uuid": "c698ae03503a4c4589337df549524f1e",
"displayName": "Label Maker",
"description": "为PCB创建独特的反向丝印标签,支持保存配置",
"version": "1.0.5",
"publisher": "Quarix",
"engines": {
"eda": "^2.2.32"
},
"license": "Apache 2.0",
"repository": {
"type": "extension-store",
"url": ""
},
"categories": "Other",
"keywords": ["PCB", "label"],
"images": {
"logo": "./images/logo.png"
},
"homepage": "https://github.com/uarix/LCEDA-Pro-LabelMaker",
"bugs": "https://github.com/uarix/LCEDA-Pro-LabelMaker/issues",
"activationEvents": {},
"entry": "./dist/index",
"dependentExtensions": {},
"headerMenus": {
"pcb": [
{
"id": "label_maker",
"title": "Label Maker",
"menuItems": [
{
"id": "create_label",
"title": "Create Label",
"registerFn": "create_label"
},
{
"id": "about",
"title": "About",
"registerFn": "about"
}
]
}
]
}
}