-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (85 loc) · 4.54 KB
/
index.html
File metadata and controls
93 lines (85 loc) · 4.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="zh-CN" class="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/serial.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<title>波特律动 串口助手 - 直接在浏览器使用的串口调试工具</title>
<meta
name="description"
content="波特律动串口助手是一款直接在浏览器使用的串口调试工具,支持串口通信、数据收发、协议解析。无需安装,浏览器直接使用,适用于嵌入式开发、硬件调试、物联网设备测试。"
/>
<meta
name="keywords"
content="串口助手,串口调试,串口工具,Web串口,串口通信,硬件调试,嵌入式开发,物联网,串口监控,数据收发"
/>
<meta name="author" content="波特律动" />
<meta name="robots" content="index, follow" />
<meta name="language" content="zh-CN" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://serial.baud-dance.com/" />
<meta property="og:title" content="波特律动 串口助手 - 直接在浏览器使用的串口调试工具" />
<meta
property="og:description"
content="波特律动串口助手是一款直接在浏览器使用的串口调试工具,支持串口通信、数据收发、协议解析。无需安装,浏览器直接使用,适用于嵌入式开发、硬件调试、物联网设备测试。"
/>
<meta property="og:image" content="https://serial.baud-dance.com/serial.svg" />
<meta property="og:site_name" content="波特律动串口助手" />
<meta property="og:locale" content="zh_CN" />
<!-- GitHub Social -->
<meta name="github:card" content="summary_large_image" />
<meta name="github:url" content="https://github.com/BaudDance/SerialAssistant" />
<meta name="github:title" content="波特律动 串口助手 - 直接在浏览器使用的串口调试工具" />
<meta
name="github:description"
content="波特律动串口助手是一款直接在浏览器使用的串口调试工具,支持串口通信、数据收发、协议解析。无需安装,浏览器直接使用,适用于嵌入式开发、硬件调试、物联网设备测试。"
/>
<meta name="github:image" content="https://serial.baud-dance.com/serial.svg" />
<!-- Bilibili Social -->
<meta name="bilibili:card" content="summary_large_image" />
<meta name="bilibili:url" content="https://space.bilibili.com/6100925" />
<meta name="bilibili:title" content="波特律动 串口助手 - 直接在浏览器使用的串口调试工具" />
<meta
name="bilibili:description"
content="波特律动串口助手是一款直接在浏览器使用的串口调试工具,支持串口通信、数据收发、协议解析。无需安装,浏览器直接使用,适用于嵌入式开发、硬件调试、物联网设备测试。"
/>
<meta name="bilibili:image" content="https://serial.baud-dance.com/serial.svg" />
<!-- Additional SEO -->
<meta name="theme-color" content="#1f2937" />
<meta name="msapplication-TileColor" content="#1f2937" />
<meta name="application-name" content="波特律动串口助手" />
<meta name="apple-mobile-web-app-title" content="串口助手" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<!-- Canonical URL -->
<link rel="canonical" href="https://serial.baud-dance.com/" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "波特律动串口助手",
"description": "波特律动串口助手是一款直接在浏览器使用的串口调试工具,支持串口通信、数据收发、协议解析。无需安装,浏览器直接使用,适用于嵌入式开发、硬件调试、物联网设备测试。",
"url": "https://serial.baud-dance.com/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "CNY"
},
"author": {
"@type": "Organization",
"name": "波特律动"
}
}
</script>
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>