add all files

This commit is contained in:
Julian Freeman
2025-07-01 20:16:57 -04:00
parent 26b71500ef
commit 4581297dac
11 changed files with 617 additions and 2 deletions

64
popup.html Normal file
View File

@@ -0,0 +1,64 @@
<!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>