-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
46 lines (39 loc) · 1006 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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
width: 300px;
padding: 10px;
font-family: Arial, sans-serif;
}
button {
width: 100%;
padding: 8px;
margin: 5px 0;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
.config-button {
background-color: #2196F3;
}
.config-button:hover {
background-color: #1976D2;
}
</style>
</head>
<body>
<h2>自定义滚动条样式</h2>
<button id="toggleSite">为当前网站启用/禁用</button>
<button id="configScrollbar" class="config-button">配置滚动条样式</button>
<button id="options">打开设置</button>
<script src="scripts/popup.js"></script>
</body>
</html>