65 lines
1.5 KiB
HTML
65 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
body {
|
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #f9fafb;
|
|
margin: 0;
|
|
padding: 12px;
|
|
width: 120px;
|
|
color: #111827;
|
|
}
|
|
|
|
h3 {
|
|
margin-top: 0;
|
|
margin-bottom: 12px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
padding: 6px 8px;
|
|
margin-top: 8px;
|
|
background-color: #2563eb;
|
|
border: none;
|
|
border-radius: 6px;
|
|
color: white;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #1d4ed8;
|
|
}
|
|
|
|
i {
|
|
font-size: 14px;
|
|
}
|
|
|
|
#fileInput {
|
|
display: none;
|
|
}
|
|
</style>
|
|
<title>Teams 别名管理</title>
|
|
</head>
|
|
<body>
|
|
<h3>Teams 别名管理</h3>
|
|
<button id="export">导出</button>
|
|
<button id="import">覆盖导入</button>
|
|
<button id="update-import">合并导入</button>
|
|
<input type="file" id="fileInput" accept="application/json" />
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|