Files

19 lines
913 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body { width: 450px; font-family: Arial, sans-serif; padding: 10px; }
button { width: 100%; padding: 10px; font-size: 14px; cursor: pointer; background-color: #1aad19; color: white; border: none; border-radius: 4px; margin-bottom: 10px; }
button:hover { background-color: #179b16; }
#data-display { margin-top: 10px; padding: 10px; background-color: #f2f2f2; border: 1px solid #ddd; border-radius: 4px; white-space: pre-wrap; word-wrap: break-word; font-size: 12px; max-height: 400px; overflow-y: auto; }
</style>
</head>
<body>
<h3>企业微信数据获取器</h3>
<!--<button id="get-students-btn">获取学员列表 (第2页)</button>-->
<button id="get-blacklist-btn">获取黑名单</button>
<pre id="data-display">点击上方按钮获取数据...</pre>
<script src="popup.js"></script>
</body>
</html>