-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
48 lines (42 loc) · 1.25 KB
/
Copy pathpopup.html
File metadata and controls
48 lines (42 loc) · 1.25 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>TabShelf</title>
<link rel="icon" href="icons/icon32.png">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<header>
<button id="orgSwitcher" class="org-switcher">
<span id="orgAvatar" class="avatar"></span>
<span id="orgName"></span>
<span class="caret">▾</span>
</button>
<button id="openWorkbench" class="open-btn">打开工作台</button>
</header>
<div id="orgDropdown" class="org-dropdown" hidden></div>
<div class="actions">
<button id="saveTab" class="action-btn">
<span class="action-icon">+</span>
<span>保存标签</span>
</button>
<button id="saveWindow" class="action-btn">
<span class="action-icon">⬇</span>
<span>保存窗口</span>
</button>
</div>
<label class="close-option">
<input id="closeTabs" type="checkbox">
保存后关闭标签
</label>
<div class="search-wrap">
<input id="search" type="search" placeholder="搜索收藏集或空间" autocomplete="off">
</div>
<div class="list-header">空间</div>
<div id="tree"></div>
<div id="status" role="status"></div>
<script src="storage.js"></script>
<script src="popup.js"></script>
</body>
</html>