-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
45 lines (45 loc) · 1.69 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
45
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<script type="module" src="./js/index.js"></script>
<link rel="stylesheet" href="./css/popup.css">
<link rel="stylesheet" href="./css/lib/switch.css">
</head>
<body>
<div class="container">
<div class="title">Google 翻譯小幫手</div>
<div class="features">
<div class="featureItem">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="autoClear">
<label class="onoffswitch-label" for="autoClear">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
<div>自動清除</div>
</div>
<div class="featureItem">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="selectedQuery">
<label class="onoffswitch-label" for="selectedQuery">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
<div>選取搜尋 (Alt)</div>
</div>
<div class="featureItem">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="selectedSpeak">
<label class="onoffswitch-label" for="selectedSpeak">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
<div>選取發音 (Ctrl)</div>
</div>
</div>
</div>
</body>
</html>