-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
62 lines (61 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html>
<head>
<link
rel="stylesheet"
href="./third_party/bootstrap_5.0.2/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="main-block">
<div class="form-check form-switch">
<input class="form-check-input" id="global_mode" type="checkbox"/>
<label class="form-check-label">Always open global version aliexpress.com</label>
</div>
<hr />
<div class="input-group mb-3">
<!--<div class="form-check form-switch">
<input
class="form-check-input"
id="country_currency_mode"
type="checkbox"
/>-->
<label class="form-check-label"
>Select country and currency</label
>
<!--</div> -->
</div>
<div class="input-group mb-3">
<select class="form-select" id="countries" autocomplete="off"></select>
<select class="form-select" id="currencies" autocomplete="off"></select>
</div>
<hr />
<!--<div class="input-group mb-3">
<div class="form-check form-switch">
<input
class="form-check-input"
id="shipment_method_mode"
type="checkbox"
/>
<label class="form-check-label"
>Display selected shipment method (beta)</label
>
</div>
</div>
<div class="input-group mb-3">
<select
class="form-select"
id="shipment_methods"
autocomplete="off"
></select>
</div>-->
<span id="message"></span>
<a id="github" href="#" class="link-dark text-center d-block mt-2"
>Github svtcore</a
>
</div>
</body>
<script src="./third_party/js/jquery-3.6.0.min.js"></script>
<script src="./third_party/bootstrap_5.0.2/js/bootstrap.min.js"></script>
<script src="./js/app.js"></script>
</html>