-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
77 lines (77 loc) · 1.9 KB
/
Copy pathextension.json
File metadata and controls
77 lines (77 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "export-design-report",
"uuid": "8fd55bb0080e4576bd8a2e92f2eac894",
"displayName": "设计报告",
"description": "本扩展用于基于当前 PCB 设计,导出指定高速网络的长度信息、焊盘坐标信息,以及板卡面积、元件数、焊盘数与 pin 密度等 PCB 统计信息。",
"version": "1.0.15",
"publisher": "EasyEDA",
"engines": {
"eda": "^2.2.34"
},
"license": "MIT License",
"repository": {
"type": "github",
"url": "https://github.com/easyeda/eext-export-design-report"
},
"categories": "PCB",
"keywords": ["Report", "Net Length"],
"images": {
"logo": "./images/logo.png"
},
"homepage": "https://github.com/easyeda",
"bugs": "https://github.com/easyeda/eext-export-design-report/issues",
"activationEvents": {},
"entry": "./dist/index",
"dependentExtensions": {},
"headerMenus": {
"pcb": [
{
"id": "Report",
"title": "设计报告",
"menuItems": [
{
"id": "Net Length",
"title": "网络长度",
"menuItems": [
{
"id": "Net",
"title": "网络",
"registerFn": "extractAllNetDetails"
},
{
"id": "Net Classes",
"title": "网络类",
"registerFn": "extractNetClassLengthDetails"
},
{
"id": "Differential Pair",
"title": "差分对",
"registerFn": "extractDifferentialPairsDetails"
},
{
"id": "Equal Length Group",
"title": "等长网络组",
"registerFn": "extractEqualLengthNetGroupsDetails"
},
{
"id": "Pads Pair Group",
"title": "焊盘对组",
"registerFn": "extractPadPairGroupsDetails"
}
]
},
{
"id": "pad",
"title": "焊盘坐标",
"registerFn": "extractSelectPadDetails"
},
{
"id": "PCB Info",
"title": "PCB信息...",
"registerFn": "extractPcbInfo"
}
]
}
]
}
}