mirror of
https://github.com/sinanyuntu/trade-message-center.git
synced 2026-09-17 13:22:11 +08:00
38 lines
1017 B
HTML
38 lines
1017 B
HTML
<!-- 展示当前活动标签页的扩展弹窗 -->
|
|
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Trade Message Center</title>
|
|
<style>
|
|
body {
|
|
width: 280px;
|
|
margin: 0;
|
|
padding: 16px;
|
|
font:
|
|
14px/1.5 system-ui,
|
|
sans-serif;
|
|
color: #1f2937;
|
|
}
|
|
h1 {
|
|
margin: 0 0 12px;
|
|
font-size: 16px;
|
|
}
|
|
p {
|
|
margin: 6px 0;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
#url {
|
|
color: #6b7280;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Trade Message Center</h1>
|
|
<p id="title">正在读取当前页面…</p>
|
|
<p id="url"></p>
|
|
<script type="module" src="./popup.ts"></script>
|
|
</body>
|
|
</html>
|