forked from v-ko/real-time-tab-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
44 lines (36 loc) · 1.21 KB
/
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
<html>
<head>
<title>Real-Time Tab Sync</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="center">
<button id="save_tabs_button">Save tabs</button>
<div style="height: 5px;"></div>
<button id="restore_tabs_button">Restore tabs</button>
<div class="toggle_switch">
<h2>Auto sync</h2>
<span class="vctr">OFF</span>
<label class="switch">
<input id="power" type="checkbox">
<div class="slider round"></div>
</label>
<span class="vctr">ON</span>
</div>
<div class="mini_text">May be unstable.</div>
<div class="mini_text">Check sync state at:</div>
<div class="mini_text">chrome://sync-internals/</div>
<div style="height: 5px;"></div>
<div class="toggle_switch">
<h2>Tabs to sync</h2>
<span class="vctr">PINNED</span>
<label class="switch">
<input id="pinned" type="checkbox">
<div class="slider round"></div>
</label>
<span class="vctr">ALL</span>
</div>
</div>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>