-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (40 loc) · 878 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
<html>
<head>
<style>
* {
margin: 5px 2px 5px 2px;
padding: 0;
}
body {
width: 300px;
}
div {
line-height: 50px;
font-size: 22px;
text-align: center;
}
</style>
</head>
<body>
<div id="clock_div">
</div>
<hr/>
<script src="js/my_clock.js"></script>
<p>Amazon Helper
<button style="float: right;" type="button">Enable</button>
</p>
<hr />
<form>
<input name="vehicle" type="checkbox" value="Bike" />Show RMB on Search Result Page
<br />
<input name="vehicle" type="checkbox" value="Car" />Show RMB on Product Detail Page
</form>
<hr />
<form>
<input name="vehicle" type="checkbox" value="Bike" />Fix Search Box Position on Search Result Page
<br />
<input name="vehicle" type="checkbox" value="Car" />Fix Search Box Position on Product Detail Page
</form>
<hr />
</body>
</html>