16 lines
462 B
HTML
16 lines
462 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ChatGPT Bulk Delete</title>
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<button id="add-checkboxes">添加复选框</button>
|
|
<button id="bulk-delete">批量删除</button>
|
|
<button id="remove-checkboxes">取消复选框</button>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|