-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
34 lines (30 loc) · 923 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Plugin Controller</title>
<style></style>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<button id="enableAll">Enable All</button>
<button id="disableAll">Disable All</button>
<hr />
<!-- 分组列表 -->
<ul id="groups-list"></ul>
<!-- 添加分组的输入框和按钮 -->
<input type="text" id="newGroup" placeholder="Enter group name" />
<button id="addGroup">Add Group</button>
<!-- 对选中分组执行操作的按钮 -->
<button id="enableGroup">Enable Group</button>
<button id="disableGroup">Disable Group</button>
<hr />
<!-- 分隔线 -->
<!-- 插件列表 -->
<ul id="extensions-list">
<!-- 插件列表将在此处动态生成 -->
</ul>
<script src="extensionUtils.js"></script>
<script src="popup.js"></script>
</body>
</html>