-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
81 lines (72 loc) · 2.37 KB
/
Copy pathoptions.html
File metadata and controls
81 lines (72 loc) · 2.37 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>智能标签页管理器 - 设置</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="container">
<header>
<h1>智能标签页管理器 - 设置</h1>
</header>
<div class="settings-section">
<h2>快捷键设置</h2>
<div class="shortcut-setting">
<label for="shortcutInput">打开标签页管理器快捷键:</label>
<div class="shortcut-input-container">
<input type="text" id="shortcutInput" placeholder="点击这里设置快捷键" readonly>
<button id="resetShortcut" class="btn-secondary">重置为默认</button>
</div>
<p class="help-text">点击输入框,然后按下您想要的快捷键组合</p>
</div>
</div>
<div class="settings-section">
<h2>界面设置</h2>
<div class="setting-item">
<label for="defaultView">默认视图:</label>
<select id="defaultView">
<option value="all">显示全部标签页</option>
<option value="grouped">按域名分组</option>
</select>
</div>
<div class="setting-item">
<label for="popupWidth">弹窗宽度:</label>
<select id="popupWidth">
<option value="400">400px (默认)</option>
<option value="500">500px</option>
<option value="600">600px</option>
</select>
</div>
</div>
<div class="settings-section">
<h2>功能设置</h2>
<div class="setting-item">
<label>
<input type="checkbox" id="autoRefresh">
自动刷新标签页列表
</label>
</div>
<div class="setting-item">
<label>
<input type="checkbox" id="showFavicon">
显示网站图标
</label>
</div>
<div class="setting-item">
<label>
<input type="checkbox" id="enableSearch">
启用实时搜索
</label>
</div>
</div>
<div class="actions">
<button id="saveSettings" class="btn-primary">保存设置</button>
<button id="resetSettings" class="btn-secondary">重置所有设置</button>
</div>
<div id="status" class="status"></div>
</div>
<script src="options.js"></script>
</body>
</html>