v1.2 原始版本 - UI重设计前的备份

This commit is contained in:
Developer
2026-03-10 23:12:18 +08:00
commit 0a834cb9f6
6 changed files with 3070 additions and 0 deletions

27
popup.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<style>
body { width: 200px; padding: 15px; font-family: Arial; }
h3 { margin: 0 0 10px; font-size: 14px; }
p { font-size: 12px; color: #666; margin: 5px 0; }
button {
width: 100%;
padding: 8px;
background: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
}
button:hover { background: #45a049; }
</style>
</head>
<body>
<h3>磁力链接复制助手</h3>
<p>在论坛页面提取当前页磁力链接并复制到剪贴板</p>
<button id="copyBtn">手动复制当前页面</button>
<script src="popup.js"></script>
</body>
</html>