17 lines
463 B
HTML
17 lines
463 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Bulk Delete ChatGPT Conversations</title>
|
|
</head>
|
|
<body>
|
|
<button id="add_checkboxes">添加复选框</button>
|
|
<button id="delete_selected">删除选中对话</button>
|
|
|
|
<script src="popup.js"></script>
|
|
<script src="content.js"></script>
|
|
<script src="background.js"></script>
|
|
</body>
|
|
</html>
|