-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextension.json
More file actions
57 lines (57 loc) · 1.19 KB
/
extension.json
File metadata and controls
57 lines (57 loc) · 1.19 KB
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
{
"name": "interactive-html-bom",
"uuid": "94033c9338e84a498ef75cd91e7869eb",
"displayName": "交互式BOM(移植版)",
"description": "交互式 BOM 查看器,基于 InteractiveHtmlBom 项目移植而来",
"version": "2.4.1",
"publisher": "EasyEDA",
"engines": {
"eda": "^3.2.0"
},
"license": "MIT",
"repository": {
"type": "github",
"url": "https://github.com/easyeda/eext-interactive-html-bom"
},
"categories": "PCB",
"keywords": [
"BOM",
"iBOM",
"PCB",
"Interactive",
"Assembly"
],
"images": {
"logo": "./images/logo.png"
},
"homepage": "https://github.com/easyeda/eext-interactive-html-bom",
"bugs": "https://github.com/easyeda/eext-interactive-html-bom/issues",
"activationEvents": {},
"entry": "./dist/index",
"dependentExtensions": {},
"headerMenus": {
"pcb": [
{
"id": "iBOM",
"title": "iBOM",
"menuItems": [
{
"id": "showIBOM",
"title": "打开交互式 BOM...",
"registerFn": "showIBOM"
},
{
"id": "exportHTML",
"title": "导出 HTML 文件...",
"registerFn": "exportHTML"
},
{
"id": "aboutIBOM",
"title": "关于...",
"registerFn": "about"
}
]
}
]
}
}