Files
sehuatang/popup.html
2026-03-10 23:12:18 +08:00

28 lines
686 B
HTML

<!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>